From 2ef580ea1d080ca8d0cd9357250aecc9b4aaf3a0 Mon Sep 17 00:00:00 2001 From: outghter Date: Thu, 14 Jul 2016 09:42:20 -0400 Subject: [PATCH] Remove stray code block delimiter; simplify explanation of tags property --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 9bdfdef..aaa7114 100644 --- a/README.md +++ b/README.md @@ -498,7 +498,7 @@ Custom delimiters can be used in place of `{{` and `}}` by setting the new value #### Setting in JavaScript -The `tags` property of the `Mustache` object holds an array consisting of the opening and closing tag values. Set custom values by passing a new array of tags to `parse()`, which gets honored over the default values, or by overriding the `tags` property itself: +The `Mustache.tags` property holds an array consisting of the opening and closing tag values. Set custom values by passing a new array of tags to `parse()`, which gets honored over the default values, or by overriding the `tags` property itself: ```js var customTags = [ '<%', '%>' ]; @@ -514,7 +514,6 @@ Mustache.parse(template, customTags); Mustache.tags = customTags; // Subsequent parse() and render() calls will use customTags ``` -``` #### Setting in Templates