From 2d9a082b613f6425a843ac5f225d6a609f6903f9 Mon Sep 17 00:00:00 2001 From: "nathan@stravinsky.local" Date: Thu, 27 May 2010 18:49:58 -0700 Subject: [PATCH] fixed enumerable example that uses implicit-iterator to declare pragma for it --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bfda4db..f748fbb 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ the items. Use `{{.}}` to access the current item inside the enumeration section var view = {name: "Joe's shopping card", items: ["bananas", "apples"]} - var template = "{{name}}: " + var template = "{{%IMPLICIT-ITERATOR}}{{name}}: " Outputs: Joe's shopping card: