Skip to content

Commit 1db9bae

Browse files
docs: Fix typos (#18443)
1 parent 069aa68 commit 1db9bae

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/src/contribute/development-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Go to <https://github.com/eslint/eslint> and click the "Fork" button. Follow the
2222
Clone your fork:
2323

2424
```shell
25-
git clone https://github.com/<Your Github Username>/eslint
25+
git clone https://github.com/<Your GitHub Username>/eslint
2626
```
2727

2828
Once you've cloned the repository, run `npm install` to get all the necessary dependencies:

docs/src/contribute/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Describes the governance policy for ESLint, including the rights and privileges
6060

6161
## [Report a Security Vulnerability](report-security-vulnerability)
6262

63-
To report a security vulnerability in ESLint, please create an advisory on Github.
63+
To report a security vulnerability in ESLint, please create an advisory on GitHub.
6464

6565
## Sign the CLA
6666

docs/src/maintain/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The OpenJS Foundation does not participate in the day-to-day functioning of ESLi
2727
ESLint is funded through several sources, including:
2828

2929
* [**Open Collective**](https://opencollective.com/eslint): A platform for financing open source projects.
30-
* [**GitHub Sponsors**](https://github.com/sponsors/eslint): A platform for funding open source projects associated with Github.
30+
* [**GitHub Sponsors**](https://github.com/sponsors/eslint): A platform for funding open source projects associated with GitHub.
3131
* [**Tidelift**](https://tidelift.com/subscription/pkg/npm-eslint): A subscription service that lets enterprises manage and fund the open source projects that their organization uses.
3232
* [**Carbon Ads**](https://www.carbonads.net/open-source): Developer-centric advertising provider used on [eslint.org](https://eslint.org/).
3333
* [**Stackaid.us**](https://simulation.stackaid.us/github/eslint/eslint): Tool that developers can use to allocate funding to the open source projects they use.

docs/src/use/configure/migration-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ The following changes have been made from the eslintrc to the flat config file f
668668
669669
You can see the TypeScript types for the flat config file format in the DefinitelyTyped project. The interface for the objects in the config’s array is called the `FlatConfig`.
670670
671-
You can view the type definitions in the [DefinitelyTyped repository on Github](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/eslint/index.d.ts).
671+
You can view the type definitions in the [DefinitelyTyped repository on GitHub](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/eslint/index.d.ts).
672672
673673
## Further Reading
674674

lib/rules/no-constant-binary-expression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function isStaticBoolean(scope, node) {
148148
* truthiness.
149149
* https://262.ecma-international.org/5.1/#sec-11.9.3
150150
*
151-
* Javascript `==` operator works by converting the boolean to `1` (true) or
151+
* JavaScript `==` operator works by converting the boolean to `1` (true) or
152152
* `+0` (false) and then checks the values `==` equality to that number.
153153
* @param {Scope} scope The scope in which node was found.
154154
* @param {ASTNode} node The node to test.

0 commit comments

Comments
 (0)