From 0c1fee1b8c74183e8da5389abbf4310928b3170f Mon Sep 17 00:00:00 2001 From: Tim Dorr Date: Fri, 30 Jun 2017 15:37:20 -0400 Subject: [PATCH] Move invalid example to the right section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95d04a4..43cfabb 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,6 @@ validate("some-package") validate("example.com") validate("under_score") validate("123numeric") -validate("excited!") validate("@npm/thingy") validate("@jane/foo.js") ``` @@ -65,6 +64,7 @@ All of the above names are valid, so you'll get this object back: ### Invalid Names ```js +validate("excited!") validate(" leading-space:and:weirdchars") ```