Fix typo in comment

This commit is contained in:
Lucas Kent 2016-03-31 23:35:05 +11:00
parent 256489ebc0
commit 2636d7d135

View File

@ -688,7 +688,7 @@ function traverser(ast, visitor) {
traverseArray(node.body, node);
break;
// Next we do the same will `CallExpressions` and traverse their `params`.
// Next we do the same with `CallExpressions` and traverse their `params`.
case 'CallExpression':
traverseArray(node.params, node);
break;