Fix string match example

The `?` requires a char, so `foo` cannot match.
This commit is contained in:
Aurelio Jargas 2020-09-28 00:28:11 +02:00 committed by Johannes Altmanninger
parent 286ad97cbd
commit 8d2e4bbef5

View file

@ -66,7 +66,6 @@ Match Glob Examples
>_ string match 'foo?' 'foo1' 'foo' 'foo2'
foo1
foo
foo2
Match Regex Examples