We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e9193f commit 483afc5Copy full SHA for 483afc5
doc/tutorial/basics/regexp.md
@@ -9,7 +9,7 @@ The `=~` and `!~` operators can be used to check against regular expressions.
9
The expression `a =~ b` is true if `a` matches `b`, while
10
`a !~ b` is true if `a` does _not_ match `b`.
11
12
-Just as with comparison operators, these operators maybe be used
+Just as with comparison operators, these operators may be used
13
as unary versions to define a set of strings.
14
15
@@ -36,4 +36,4 @@ b: true
36
c: =~"^[a-z]{3}$"
37
d: "foo"
38
e: _|_ /* invalid value "foo bar" (does not match =~"^[a-z]{3}$") */
39
-```
+```
0 commit comments