File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
eslint-plugin-react-hooks/src
react-devtools-extensions/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -753,7 +753,7 @@ export default {
753753 if (
754754 isUsedOutsideOfHook &&
755755 construction . type === 'Variable' &&
756- // Objects may be mutated ater construction, which would make this
756+ // Objects may be mutated after construction, which would make this
757757 // fix unsafe. Functions _probably_ won't be mutated, so we'll
758758 // allow this fix for them.
759759 depType === 'function'
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ function checkNodeLocation(
4141 }
4242
4343 if ( column !== null ) {
44- // Column numbers are representated differently between tools/engines.
44+ // Column numbers are represented differently between tools/engines.
4545 // Error.prototype.stack columns are 1-based (like most IDEs) but ASTs are 0-based.
4646 //
4747 // In practice this will probably never matter,
@@ -359,7 +359,7 @@ function isPotentialHookDeclaration(path: NodePath): boolean {
359359 return false ;
360360}
361361
362- /// Check whether 'node' is hook decalration of form useState(0); OR React.useState(0);
362+ /// Check whether 'node' is hook declaration of form useState(0); OR React.useState(0);
363363function isReactFunction ( node : Node , functionName : string ) : boolean {
364364 return (
365365 node . name === functionName ||
You can’t perform that action at this time.
0 commit comments