From fb507428b7488d572c2e6e9c881aa73854f6d89d Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Mon, 9 May 2011 16:10:50 -0700 Subject: [PATCH] Removed $this reference --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7272d0f..486afe5 100644 --- a/README.md +++ b/README.md @@ -337,8 +337,8 @@ name of the template file and optional template data: Flight::render('hello.php', array('name', 'Bob')); -The template data you pass in is automatically injected into the template and can be accessed using the `$this` variable. Template files -are simply PHP files. If the content of the `hello.php` template file is: +The template data you pass in is automatically injected into the template and can be reference like a local variable. +Template files are simply PHP files. If the content of the `hello.php` template file is: Hello, !