diff --git a/lib/pure/pegs.nim b/lib/pure/pegs.nim index 44526790f5..ed99ef3e8b 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.