diff options
author | Araq <rumpf_a@web.de> | 2012-05-20 10:58:24 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-05-20 10:58:24 +0200 |
commit | 370088557375fb5ce8d8d3d3160bccd0cfdcf8c8 (patch) | |
tree | bc569dd32e32e4724ebc6ec692cbb4266a65e411 /lib | |
parent | 0c5a4bf6c0572f7051376f59a06f8f22b6a8d56b (diff) | |
download | Nim-370088557375fb5ce8d8d3d3160bccd0cfdcf8c8.tar.gz |
fixes #114
Diffstat (limited to 'lib')
-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. |