Fix typos found by codespell

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil
2016-04-01 12:01:40 +02:00
parent f4957bd246
commit bf279b36be
16 changed files with 32 additions and 32 deletions

View File

@@ -494,7 +494,7 @@ var Parser = function Parser(context, imports, fileInfo) {
}
},
// A variable entity useing the protective {} e.g. @{var}
// A variable entity using the protective {} e.g. @{var}
variableCurly: function () {
var curly, index = parserInput.i;
@@ -931,7 +931,7 @@ var Parser = function Parser(context, imports, fileInfo) {
//
// A Rule terminator. Note that we use `peek()` to check for '}',
// because the `block` rule will be expecting it, but we still need to make sure
// it's there, if ';' was ommitted.
// it's there, if ';' was omitted.
//
end: function () {
return parserInput.$char(';') || parserInput.peek('}');