From 9e47734a5cbee25d7c851db1b79eff6acef23c32 Mon Sep 17 00:00:00 2001 From: Josiah Rooney Date: Mon, 30 Sep 2019 14:44:43 -0700 Subject: [PATCH] Docs: fix typo in no-magic-numbers --- docs/rules/no-magic-numbers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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