Skip to content

Commit

Permalink
docs: Fix typos (#18443)
Browse files Browse the repository at this point in the history
  • Loading branch information
friederbluemle committed May 12, 2024
1 parent 069aa68 commit 1db9bae
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/contribute/development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Go to <https://github.com/eslint/eslint> and click the "Fork" button. Follow the
Clone your fork:

```shell
git clone https://github.com/<Your Github Username>/eslint
git clone https://github.com/<Your GitHub Username>/eslint
```

Once you've cloned the repository, run `npm install` to get all the necessary dependencies:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/contribute/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Describes the governance policy for ESLint, including the rights and privileges

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

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

## Sign the CLA

Expand Down
2 changes: 1 addition & 1 deletion docs/src/maintain/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The OpenJS Foundation does not participate in the day-to-day functioning of ESLi
ESLint is funded through several sources, including:

* [**Open Collective**](https://opencollective.com/eslint): A platform for financing open source projects.
* [**GitHub Sponsors**](https://github.com/sponsors/eslint): A platform for funding open source projects associated with Github.
* [**GitHub Sponsors**](https://github.com/sponsors/eslint): A platform for funding open source projects associated with GitHub.
* [**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.
* [**Carbon Ads**](https://www.carbonads.net/open-source): Developer-centric advertising provider used on [eslint.org](https://eslint.org/).
* [**Stackaid.us**](https://simulation.stackaid.us/github/eslint/eslint): Tool that developers can use to allocate funding to the open source projects they use.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/use/configure/migration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ The following changes have been made from the eslintrc to the flat config file f
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`.
You can view the type definitions in the [DefinitelyTyped repository on Github](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/eslint/index.d.ts).
You can view the type definitions in the [DefinitelyTyped repository on GitHub](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/eslint/index.d.ts).
## Further Reading
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-constant-binary-expression.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function isStaticBoolean(scope, node) {
* truthiness.
* https://262.ecma-international.org/5.1/#sec-11.9.3
*
* Javascript `==` operator works by converting the boolean to `1` (true) or
* JavaScript `==` operator works by converting the boolean to `1` (true) or
* `+0` (false) and then checks the values `==` equality to that number.
* @param {Scope} scope The scope in which node was found.
* @param {ASTNode} node The node to test.
Expand Down

0 comments on commit 1db9bae

Please sign in to comment.