Merge pull request #13 from rukai/patch-1

Fix typo in comment
This commit is contained in:
James Kyle 2016-03-31 08:27:26 -07:00
commit 900750c78e

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;