summaryrefslogtreecommitdiffstats
path: root/spec/parser.js
diff options
context:
space:
mode:
authorAymerick <aymerick@jehanne.org>2015-05-06 14:03:14 +0200
committerAymerick <aymerick@jehanne.org>2015-05-06 14:03:14 +0200
commitd0d2168ec29092dccde043f13de7b912252162a8 (patch)
treefbe0e64fa987bf51f85e5f801be8665f738d4177 /spec/parser.js
parent8cba84df119c317fcebc49fb285518542ca9c2d0 (diff)
downloadhandlebars.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.js2
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');
});