diff --git a/lib/rules/prefer-object-has-own.js b/lib/rules/prefer-object-has-own.js index 21b04037bac..5e6c219835e 100644 --- a/lib/rules/prefer-object-has-own.js +++ b/lib/rules/prefer-object-has-own.js @@ -65,7 +65,7 @@ module.exports = { const objectPropertyName = astUtils.getStaticPropertyName(node.callee.object); const isObject = checkForObject(node.callee); - // check `Object` + // check `Object` scope const scope = context.getScope(); const variable = astUtils.getVariableByName(scope, "Object");