We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a392a3 commit 2710730Copy full SHA for 2710730
README.md
@@ -75,7 +75,7 @@ This is an email RegExp:
75
And this is the same expression written in readable RegExp:
76
77
```js
78
-const allowedChar = notCharIn`<>()[]\\\\``.,;:@"`(whitespace);
+const allowedChar = notCharIn`<>()[]\\\\` `.,;:@"` (whitespace);
79
const email = lineStart
80
.capture.oneOf
81
( // username
@@ -105,10 +105,10 @@ const email = lineStart
105
)
106
( // domain name
107
oneOrMore(
108
- oneOrMore.charIn`a-z``A-Z``0-9``-`
+ oneOrMore.charIn`a-z` `A-Z` `0-9` `-`
109
.exactly`.`
110
111
- .atLeast(2).charIn`a-z``A-Z`
+ .atLeast(2).charIn`a-z` `A-Z`
112
113
.lineEnd
114
.toRegExp();
0 commit comments