Skip to content

Commit b607ae6

Browse files
authored
docs: update description of no-param-reassign (#19220)
* docs: add missing backticks to `no-param-reassign.md` * wip * wip
1 parent 1eb424d commit b607ae6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/src/_data/rules_meta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1760,7 +1760,7 @@
17601760
"no-param-reassign": {
17611761
"type": "suggestion",
17621762
"docs": {
1763-
"description": "Disallow reassigning `function` parameters",
1763+
"description": "Disallow reassigning function parameters",
17641764
"recommended": false,
17651765
"url": "https://eslint.org/docs/latest/rules/no-param-reassign"
17661766
}

docs/src/rules/no-param-reassign.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ further_reading:
66
---
77

88

9-
Assignment to variables declared as function parameters can be misleading and lead to confusing behavior, as modifying function parameters will also mutate the `arguments` object when not in strict mode (see [When Not To Use It](#when-not-to-use-it) below). Often, assignment to function parameters is unintended and indicative of a mistake or programmer error.
9+
Assignment to variables declared as function parameters can be misleading and lead to confusing behavior, as modifying function parameters will also mutate the `arguments` object when not in `strict` mode (see [When Not To Use It](#when-not-to-use-it) below). Often, assignment to function parameters is unintended and indicative of a mistake or programmer error.
1010

1111
This rule can be also configured to fail when function parameters are modified. Side effects on parameters can cause counter-intuitive execution flow and make errors difficult to track down.
1212

@@ -184,4 +184,4 @@ var foo = function(barBaz) {
184184

185185
If you want to allow assignment to function parameters, then you can safely disable this rule.
186186

187-
Strict mode code doesn't sync indices of the arguments object with each parameter binding. Therefore, this rule is not necessary to protect against arguments object mutation in ESM modules or other strict mode functions.
187+
`strict` mode code doesn't sync indices of the arguments object with each parameter binding. Therefore, this rule is not necessary to protect against arguments object mutation in ESM modules or other `strict` mode functions.

lib/rules/no-param-reassign.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview Disallow reassignment of function parameters.
2+
* @fileoverview Disallow reassigning function parameters.
33
* @author Nat Burns
44
*/
55
"use strict";
@@ -16,7 +16,7 @@ module.exports = {
1616
type: "suggestion",
1717

1818
docs: {
19-
description: "Disallow reassigning `function` parameters",
19+
description: "Disallow reassigning function parameters",
2020
recommended: false,
2121
url: "https://eslint.org/docs/latest/rules/no-param-reassign"
2222
},

0 commit comments

Comments
 (0)