From d0d2168ec29092dccde043f13de7b912252162a8 Mon Sep 17 00:00:00 2001 From: Aymerick Date: Wed, 6 May 2015 14:03:14 +0200 Subject: [PATCH] Fixes typo in tests mutache => mustache --- spec/parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/parser.js b/spec/parser.js index c37887414..fa8c5b7dc 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'); });