diff options
-rwxr-xr-x | lib/pure/pegs.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/pegs.nim b/lib/pure/pegs.nim index 44526790f..ed99ef3e8 100755 --- a/lib/pure/pegs.nim +++ b/lib/pure/pegs.nim @@ -258,8 +258,8 @@ proc UnicodeLower*: TPeg {.inline.} = result.kind = pkLower proc UnicodeUpper*: TPeg {.inline.} = - ## constructs the PEG ``\upper`` which matches any Unicode lowercase letter. - result.kind = pkUpper + ## constructs the PEG ``\upper`` which matches any Unicode uppercase letter. + result.kind = pkUpper proc UnicodeTitle*: TPeg {.inline.} = ## constructs the PEG ``\title`` which matches any Unicode title letter. |