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 all 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/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