diff --git a/README.md b/README.md index 361983fb..fd58e51c 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ The main class is `Liquid::Template` class. There are two separate stages of wor $template = new Template(); $template->parse("Hello, {{ name }}!"); - echo $template->render(array('name' => 'World'); + echo $template->render(array('name' => 'World')); // Will echo // Hello, World!