diff --git a/docs/rules/no-magic-numbers.md b/docs/rules/no-magic-numbers.md index 339a0adb024..7d1e5a5583b 100644 --- a/docs/rules/no-magic-numbers.md +++ b/docs/rules/no-magic-numbers.md @@ -1,6 +1,6 @@ # Disallow Magic Numbers (no-magic-numbers) -'Magic numbers' are numbers that occur multiple time in code without an explicit meaning. +'Magic numbers' are numbers that occur multiple times in code without an explicit meaning. They should preferably be replaced by named constants. ```js