Docs: Update regexp-syntax.asciidoc

Closes #7419
This commit is contained in:
Clinton Gormley 2014-09-07 11:42:28 +02:00
parent 46cda7db09
commit e0684c4f6e
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ once or more times. For string `"aaabbb"`:
a+b+ # match
aa+bb+ # match
a+.+ # match
aa+bbb+ # no match
aa+bbb+ # match
--