Skip to content

Commit

Permalink
Fix typo in docs (#1821)
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelass committed May 24, 2022
1 parent 6ef957a commit 330d1dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/numeric-separators-style.md
Expand Up @@ -50,7 +50,7 @@ Example:

```js
// eslint unicorn/numeric-separators-style: ["error", {"onlyIfContainsSeparator": true, "binary": {"onlyIfContainsSeparator": false}]
const number = 100000; // Pass, this number does not contains separators
const number = 100000; // Pass, this number does not contain separators
const binary = 0b101010001; // Fail, `binary` type don't require separators
const hexadecimal = 0xD_EED_BEE_F; // Fail, it contain separators and it's incorrectly grouped
```
Expand Down

0 comments on commit 330d1dd

Please sign in to comment.