Corrected docs on Ragel's * operator.

This commit is contained in:
Yorick Peterse 2014-11-03 09:04:57 +01:00
parent 7ac7a5e863
commit 8446e172e7
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ defined as following:
A quick and basic crash course of the Ragel grammar:
* `*`: zero or one instance of the preceding token(s)
* `*`: zero or more instance of the preceding token(s)
* `+`: one or more instances of the preceding token(s)
* `(` and `)`: used for grouping expressions together
* `^`: inverts a match, thus `^[0-9]` means "anything but a single digit"