diff options
author | Aymerick <aymerick@jehanne.org> | 2015-05-06 14:03:14 +0200 |
---|---|---|
committer | Aymerick <aymerick@jehanne.org> | 2015-05-06 14:03:14 +0200 |
commit | d0d2168ec29092dccde043f13de7b912252162a8 (patch) | |
tree | fbe0e64fa987bf51f85e5f801be8665f738d4177 /spec/parser.js | |
parent | 8cba84df119c317fcebc49fb285518542ca9c2d0 (diff) | |
download | handlebars.js-d0d2168ec29092dccde043f13de7b912252162a8.zip handlebars.js-d0d2168ec29092dccde043f13de7b912252162a8.tar.gz handlebars.js-d0d2168ec29092dccde043f13de7b912252162a8.tar.bz2 |
Fixes typo in tests
mutache => mustache
Diffstat (limited to 'spec/parser.js')
-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'); }); |