From 8af652d83c496dbdce126ee3f132a11f783f3a3e Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Sat, 9 Jun 2018 20:45:28 +0100 Subject: [PATCH] Docs: Restore intentional spelling mistake This was accidentally removed in #9965. --- docs/rules/valid-typeof.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/valid-typeof.md b/docs/rules/valid-typeof.md index 60539eecbce..2ce02b4906b 100644 --- a/docs/rules/valid-typeof.md +++ b/docs/rules/valid-typeof.md @@ -20,7 +20,7 @@ Examples of **incorrect** code for this rule: typeof foo === "strnig" typeof foo == "undefimed" typeof bar != "nunber" -typeof bar !== "function" +typeof bar !== "fucntion" ``` Examples of **correct** code for this rule: