Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Fix minor formatting/grammar errors #12371

Merged
merged 7 commits into from Oct 4, 2019
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/developer-guide/contributing/pull-requests.md
Expand Up @@ -112,7 +112,7 @@ With your code ready to go, this is a good time to double-check your submission
* Make separate pull requests for unrelated changes. Large pull requests with multiple unrelated changes may be closed without merging.
* All changes must be accompanied by tests, even if the feature you're working on previously had no tests.
* All user-facing changes must be accompanied by appropriate documentation.
* Follow the [Code Conventions](../code-conventions.html).
* Follow the [Code Conventions](../code-conventions.md).
kaicataldo marked this conversation as resolved.
Show resolved Hide resolved

### Step 6: Push your changes<a name="step6"></a>

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/no-obj-calls.md
Expand Up @@ -12,7 +12,7 @@ The [ECMAScript 2015 specification](https://www.ecma-international.org/ecma-262/

And the [ECMAScript 2017 specification](https://www.ecma-international.org/ecma-262/8.0/index.html#sec-atomics-object) makes it clear that `Atomics` cannot be invoked:

> The Atomics object does not have a [[Call]] internal method; it is not possible to invoke the Atomics object as a function.
> The Atomics object does not have a `[[Call]]` internal method; it is not possible to invoke the Atomics object as a function.

## Rule Details

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/space-infix-ops.md
Expand Up @@ -23,7 +23,7 @@ This rule is aimed at ensuring there are spaces around infix operators.
This rule accepts a single options argument with the following defaults:

```json
"space-infix-ops": ["error", {"int32Hint": false}]
"space-infix-ops": ["error", { "int32Hint": false }]
```

### `int32Hint`
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/symbol-description.md
@@ -1,6 +1,6 @@
# require symbol description (symbol-description)

The `Symbol` function may have optional description:
The `Symbol` function may have an optional description:

```js
var foo = Symbol("some description");
Expand Down