Skip to content

Commit

Permalink
Docs: README.md, prefer-const; change modified to reassigned
Browse files Browse the repository at this point in the history
  • Loading branch information
mdebruijne committed Mar 6, 2016
1 parent 77f5787 commit 5d9a798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/README.md
Expand Up @@ -236,7 +236,7 @@ These rules are only relevant to ES6 environments.
* [no-var](no-var.md) - require `let` or `const` instead of `var`
* [object-shorthand](object-shorthand.md) - require method and property shorthand syntax for object literals
* [prefer-arrow-callback](prefer-arrow-callback.md) - suggest using arrow functions as callbacks
* [prefer-const](prefer-const.md) - suggest using `const` declaration for variables that are never modified after declared
* [prefer-const](prefer-const.md) - suggest using `const` declaration for variables that are never reassigned after declared
* [prefer-reflect](prefer-reflect.md) - suggest using Reflect methods where applicable
* [prefer-rest-params](prefer-rest-params.md) - suggest using the rest parameters instead of `arguments`
* [prefer-spread](prefer-spread.md) - suggest using the spread operator instead of `.apply()`
Expand Down

0 comments on commit 5d9a798

Please sign in to comment.