Skip to content

Commit 483afc5

Browse files
noelmcloughlinmpvl
authored andcommitted
doc/tutorials/basic: update regexp.md
Fix repetitive typo Closes #74 cuelang/cue#74 GitOrigin-RevId: 4b3470739a88f95d0e1b8e861ab9be3b13fde5d9 Change-Id: Ia50f7ad918be8dca826412b3b98dcce8183f3bba Reviewed-on: https://cue-review.googlesource.com/c/cue/+/2868 Reviewed-by: Marcel van Lohuizen <[email protected]>
1 parent 2e9193f commit 483afc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/tutorial/basics/regexp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `=~` and `!~` operators can be used to check against regular expressions.
99
The expression `a =~ b` is true if `a` matches `b`, while
1010
`a !~ b` is true if `a` does _not_ match `b`.
1111

12-
Just as with comparison operators, these operators maybe be used
12+
Just as with comparison operators, these operators may be used
1313
as unary versions to define a set of strings.
1414

1515

@@ -36,4 +36,4 @@ b: true
3636
c: =~"^[a-z]{3}$"
3737
d: "foo"
3838
e: _|_ /* invalid value "foo bar" (does not match =~"^[a-z]{3}$") */
39-
```
39+
```

0 commit comments

Comments
 (0)