docs($parse): fix typo in error message description

Closes #13409
This commit is contained in:
daviskoh
2015-09-24 21:18:05 -04:00
committed by Martin Staffa
parent 6454f51741
commit b3da88077f
+1 -1
View File
@@ -1069,7 +1069,7 @@ ASTCompiler.prototype = {
right = this.nextId();
left = {};
if (!isAssignable(ast.left)) {
throw $parseMinErr('lval', 'Trying to assing a value to a non l-value');
throw $parseMinErr('lval', 'Trying to assign a value to a non l-value');
}
this.recurse(ast.left, undefined, left, function() {
self.if_(self.notNull(left.context), function() {