Skip to content

Commit 205dbd2

Browse files
authored
chore: fix typos (#20200)
1 parent a1f06a3 commit 205dbd2

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/src/library/rule-list.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The rule list is a macro defined in `components/rule-list.macro.html`. The macro
1414

1515
<!-- use the macro -->
1616
{{ replacementRuleList({ specifiers: [{ rule: { name: 'global-require', url:
17-
'...' }, plugin: { name: '@eslint-comunnity/eslint-plugin-n', url: '...' } }] })
17+
'...' }, plugin: { name: '@eslint-community/eslint-plugin-n', url: '...' } }] })
1818
}}
1919
```
2020

@@ -24,4 +24,4 @@ The rule list is a macro defined in `components/rule-list.macro.html`. The macro
2424

2525
{% from 'components/rule-list.macro.html' import replacementRuleList %}
2626

27-
{{ replacementRuleList({ specifiers: [{ rule: { name: 'global-require', url: '...' }, plugin: { name: '@eslint-comunnity/eslint-plugin-n', url: '...' } }] }) }}
27+
{{ replacementRuleList({ specifiers: [{ rule: { name: 'global-require', url: '...' }, plugin: { name: '@eslint-community/eslint-plugin-n', url: '...' } }] }) }}

lib/eslint/eslint-helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ async function globMultiSearch({
506506
* @param {boolean} args.globInputPaths true to interpret glob patterns,
507507
* false to not interpret glob patterns.
508508
* @param {string} args.cwd The current working directory to find from.
509-
* @param {ConfigLoader|LegacyConfigLoader} args.configLoader The config loeader for the current run.
509+
* @param {ConfigLoader|LegacyConfigLoader} args.configLoader The config loader for the current run.
510510
* @param {boolean} args.errorOnUnmatchedPattern Determines if an unmatched pattern
511511
* should throw an error.
512512
* @returns {Promise<Array<string>>} The fully resolved file paths.

lib/shared/serialization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function isSerializable(val, seenObjects = new Set()) {
5656
/*
5757
* We're creating a new Set of seen objects because we want to
5858
* ensure that `val` doesn't appear again in this path, but it can appear
59-
* in other paths. This allows for resuing objects in the graph, as long as
59+
* in other paths. This allows for reusing objects in the graph, as long as
6060
* there are no cycles.
6161
*/
6262
!isSerializable(

0 commit comments

Comments
 (0)