From 8a61df325e50d6d743a15f5bda26e2d9d1fbe14a Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Sat, 9 Jun 2018 20:45:28 +0100 Subject: [PATCH] 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 60539eecbce2..2ce02b4906b2 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: