From e828a2f6929ec8d5213c63be0822335170c459ca Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Thu, 2 Dec 2021 18:41:10 +0530 Subject: [PATCH] chore: udpate comment --- lib/rules/prefer-object-has-own.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");