From 7a58ca251792e76c6fde48d8d7e4f5b64c228bbd Mon Sep 17 00:00:00 2001 From: Simon Wisselink Date: Wed, 13 Sep 2023 22:15:06 +0200 Subject: [PATCH] Fixed invalid classname in example in docs. --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 assign('name', 'Ned'); $smarty->display('index.tpl'); ```