diff options
| author | Simon Wisselink <s.wisselink@iwink.nl> | 2023-09-13 22:15:06 +0200 |
|---|---|---|
| committer | Simon Wisselink <s.wisselink@iwink.nl> | 2023-09-13 22:15:06 +0200 |
| commit | 7a58ca251792e76c6fde48d8d7e4f5b64c228bbd (patch) | |
| tree | d9fdf62bb252799bf4db142260d3f4f2a6a7d8ab /docs | |
| parent | 9b9660881d65607238398cf6abafc9d0b70c864e (diff) | |
| download | smarty-7a58ca251792e76c6fde48d8d7e4f5b64c228bbd.tar.gz smarty-7a58ca251792e76c6fde48d8d7e4f5b64c228bbd.tar.bz2 smarty-7a58ca251792e76c6fde48d8d7e4f5b64c228bbd.zip | |
Fixed invalid classname in example in docs.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/getting-started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting-started.md b/docs/getting-started.md index 90fae47a..ecede34c 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -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'); ``` |
