diff options
author | Kevin Decker <kpdecker@gmail.com> | 2015-06-09 06:07:35 -0400 |
---|---|---|
committer | Kevin Decker <kpdecker@gmail.com> | 2015-06-09 06:07:35 -0400 |
commit | d2fb3a49062d4914007152b9fcd55369d978c497 (patch) | |
tree | b06e592cafd7e0574dac1e5c548f88d85cdd2231 | |
parent | 2c1d509c6cafea145ece5ff9bc8b5c2ca98f9749 (diff) | |
parent | d0805e9cfa46b167b083e2d48bac058137877100 (diff) | |
download | handlebars.js-d2fb3a49062d4914007152b9fcd55369d978c497.zip handlebars.js-d2fb3a49062d4914007152b9fcd55369d978c497.tar.gz handlebars.js-d2fb3a49062d4914007152b9fcd55369d978c497.tar.bz2 |
Merge pull request #1037 from tomxtobin/minor-readme-typo-fixes
Fix minor typos in README
-rw-r--r-- | README.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/README.markdown b/README.markdown index d6aa6bd..6500966 100644 --- a/README.markdown +++ b/README.markdown @@ -287,8 +287,8 @@ You can also use real html comments if you want them to end up in the output. There are a few Mustache behaviors that Handlebars does not implement. - Handlebars deviates from Mustache slightly in that it does not perform recursive lookup by default. The compile time `compat` flag must be set to enable this functionality. Users should note that there is a performance cost for enabling this flag. The exact cost varies by template, but it's recommended that performance sensitive operations should avoid this mode and instead opt for explicit path references. -- The optional Mustache-style lambdas are not supported. Instead Handlebars provides it's own lambda resolution that follows the behaviors of helpers. -- Alternative delimeters are not supported. +- The optional Mustache-style lambdas are not supported. Instead Handlebars provides its own lambda resolution that follows the behaviors of helpers. +- Alternative delimiters are not supported. Precompiling Templates |