From 9c7641f63f61e2e42795dd6b1e377b9af887855c Mon Sep 17 00:00:00 2001 From: Dickson Wong Date: Wed, 14 Jan 2015 15:46:54 -0800 Subject: [PATCH] Fix example using #with helper Example using #with helper should close tag using {{/with}} --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 04d609701..7736b1515 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: