diff options
author | Kevin Decker <kpdecker@gmail.com> | 2015-05-06 11:13:43 -0500 |
---|---|---|
committer | Kevin Decker <kpdecker@gmail.com> | 2015-05-06 11:13:43 -0500 |
commit | 2c1d509c6cafea145ece5ff9bc8b5c2ca98f9749 (patch) | |
tree | 5271747be5573e0d860b278cc655803d8ab92c55 | |
parent | 569f2885513d078bbd56128edbb948f130de3097 (diff) | |
parent | d0d2168ec29092dccde043f13de7b912252162a8 (diff) | |
download | handlebars.js-2c1d509c6cafea145ece5ff9bc8b5c2ca98f9749.zip handlebars.js-2c1d509c6cafea145ece5ff9bc8b5c2ca98f9749.tar.gz handlebars.js-2c1d509c6cafea145ece5ff9bc8b5c2ca98f9749.tar.bz2 |
Merge pull request #1019 from aymerick/aymerick-patch-typo-test
Fixes typo in tests
-rw-r--r-- | spec/parser.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/parser.js b/spec/parser.js index c378874..fa8c5b7 100644 --- a/spec/parser.js +++ b/spec/parser.js @@ -65,7 +65,7 @@ describe('parser', function() { equals(astFor('{{foo undefined null}}'), '{{ PATH:foo [UNDEFINED, NULL] }}\n'); }); - it('parses mutaches with DATA parameters', function() { + it('parses mustaches with DATA parameters', function() { equals(astFor('{{foo @bar}}'), '{{ PATH:foo [@PATH:bar] }}\n'); }); |