Skip to content

Commit f799618

Browse files
committed
chore: fix typo
1 parent a181e40 commit f799618

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/plugins/eslint-plugin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ export default tseslint.config({
165165

166166
Contributions are welcome!
167167

168-
Please follow our [contributing guidelines](https://github.com/Rel1cx/eslint-react/tree/2.0.0/.github/CONTRIBUTING.md).
168+
Please follow our [contributing guidelines](https://github.com/Rel1cx/eslint-react/tree/refactor/ast-utilities-reorganization/.github/CONTRIBUTING.md).
169169

170170
## License
171171

172-
This project is licensed under the MIT License - see the [LICENSE](https://github.com/Rel1cx/eslint-react/tree/2.0.0/LICENSE) file for details.
172+
This project is licensed under the MIT License - see the [LICENSE](https://github.com/Rel1cx/eslint-react/tree/refactor/ast-utilities-reorganization/LICENSE) file for details.

packages/utilities/var/src/misc.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { AST_NODE_TYPES as T } from "@typescript-eslint/types";
55
import { findVariable } from "./variable-extractor";
66
import { getVariableDefinitionNode } from "./variable-resolver";
77

8-
export function getChidScopes(scope: Scope): readonly Scope[] {
8+
export function getChildScopes(scope: Scope): readonly Scope[] {
99
const scopes = [scope];
1010
for (const childScope of scope.childScopes) {
11-
scopes.push(...getChidScopes(childScope));
11+
scopes.push(...getChildScopes(childScope));
1212
}
1313
return scopes;
1414
}

0 commit comments

Comments
 (0)