diff options
author | Dickson Wong <diwo@users.noreply.github.com> | 2015-01-14 15:46:54 -0800 |
---|---|---|
committer | Dickson Wong <diwo@users.noreply.github.com> | 2015-01-14 15:46:54 -0800 |
commit | 9c7641f63f61e2e42795dd6b1e377b9af887855c (patch) | |
tree | 340d6b52a220a49dff361584af5c93b587611d4b /README.markdown | |
parent | 96a5cf5ba11c17546b020a5d40171b984213421d (diff) | |
download | handlebars.js-9c7641f63f61e2e42795dd6b1e377b9af887855c.zip handlebars.js-9c7641f63f61e2e42795dd6b1e377b9af887855c.tar.gz handlebars.js-9c7641f63f61e2e42795dd6b1e377b9af887855c.tar.bz2 |
Fix example using #with helper
Example using #with helper should close tag using {{/with}}
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown index 04d6097..7736b15 100644 --- a/README.markdown +++ b/README.markdown @@ -134,7 +134,7 @@ into the person object you could still display the company's name with an expression like `{{../company.name}}`, so: ``` -{{#with person}}{{name}} - {{../company.name}}{{/person}} +{{#with person}}{{name}} - {{../company.name}}{{/with}} ``` would render: |