Skip to content

Commit

Permalink
Fixed invalid classname in example in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
wisskid committed Sep 13, 2023
1 parent 9b96608 commit 7a58ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/getting-started.md
Expand Up @@ -167,7 +167,7 @@ class My_GuestBook extends Smarty {
Now, we can use `My_GuestBook` instead of `Smarty` in our scripts:
```php
<?php
$smarty = new Smarty_GuestBook();
$smarty = new My_GuestBook();
$smarty->assign('name', 'Ned');
$smarty->display('index.tpl');
```

0 comments on commit 7a58ca2

Please sign in to comment.