Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 57d369c

Browse files
author
timeless@gmail.com
committed
spelling: precedence
1 parent fefafc0 commit 57d369c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ng/parseSpec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ describe('parser', function() {
701701
});
702702

703703

704-
it('should associate binary operators with the same precendence left-to-right', function() {
704+
it('should associate binary operators with the same precedence left-to-right', function() {
705705
var operatorsByPrecedence = [['*', '/', '%'], ['+', '-'], ['<', '>', '<=', '>='], ['==','!=','===','!==']];
706706
forEach(operatorsByPrecedence, function(operators) {
707707
forEach(operators, function(op1) {
@@ -733,7 +733,7 @@ describe('parser', function() {
733733
});
734734

735735

736-
it('should give higher prcedence to member calls than to unary expressions', function() {
736+
it('should give higher precedence to member calls than to unary expressions', function() {
737737
forEach(['!', '+', '-'], function(operator) {
738738
expect(createAst(operator + 'foo()')).toEqual(
739739
{

0 commit comments

Comments
 (0)