From c6022078c9da428a22185731f54007fc1c75f20b Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Mon, 17 Apr 2023 09:08:55 -0600 Subject: [PATCH] typo, https://github.com/phetsims/chipper/issues/1004 --- eslint/rules/bad-phet-library-text.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint/rules/bad-phet-library-text.js b/eslint/rules/bad-phet-library-text.js index d9c7f00d..d1a9909d 100644 --- a/eslint/rules/bad-phet-library-text.js +++ b/eslint/rules/bad-phet-library-text.js @@ -18,7 +18,7 @@ module.exports = function( context ) { // see getBadTextTester for schema. const forbiddenTextObjects = [ - // accessining the sim as a global, like `phet.joist.sim` is a classic example of a hard dependency that can be a + // accessing the sim as a global, like `phet.joist.sim` is a classic example of a hard dependency that can be a // ticking time bomb for common code that isn't normally run outside phetsims (but could and may want to in the // future). See https://github.com/phetsims/chipper/issues/1004 { id: 'phet.joist', codeTokens: [ 'phet', '.', 'joist' ] }