Fixes typo in tests

mutache => mustache
This commit is contained in:
Aymerick
2015-05-06 14:03:14 +02:00
parent 8cba84df11
commit d0d2168ec2
+1 -1
View File
@@ -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');
});