Merge pull request babel/babel-eslint#182 from bryanrsmith/patch-1

fix typo in comment
This commit is contained in:
Henry Zhu
2015-09-11 18:38:53 -04:00
parent 229a1922d8
commit 742b1cb65d

View File

@@ -84,7 +84,7 @@ function monkeypatch() {
}
var Definition = require(definitionLoc).Definition;
// if there are decotators, then visit each
// if there are decorators, then visit each
function visitDecorators(node) {
if (!node.decorators) {
return;
@@ -416,4 +416,4 @@ exports.parseNoPatch = function (code) {
acornToEsprima.toAST(ast, traverse);
return ast;
}
}