From b4bab5ddf9bfb26cd1ff4a2edf9a9e51f3c774ff Mon Sep 17 00:00:00 2001 From: danial rahimy <48244647+danialRahimy@users.noreply.github.com> Date: Thu, 23 Feb 2023 11:59:09 +0330 Subject: [PATCH] Update controllers.rst Correction of typos Signed-off-by: danial rahimy <48244647+danialRahimy@users.noreply.github.com> --- developer_manual/basics/controllers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/basics/controllers.rst b/developer_manual/basics/controllers.rst index 4e34f0a97b0..5025d205af5 100644 --- a/developer_manual/basics/controllers.rst +++ b/developer_manual/basics/controllers.rst @@ -474,7 +474,7 @@ Templates A :doc:`template ` can be rendered by returning a TemplateResponse. A TemplateResponse takes the following parameters: * **appName**: tells the template engine in which app the template should be located -* **templateName**: the name of the template inside the template/ folder without the .php extension +* **templateName**: the name of the template inside the templates/ folder without the .php extension * **parameters**: optional array parameters that are available in the template through $_, e.g.:: array('key' => 'something')