summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-05-20 10:58:24 +0200
committerAraq <rumpf_a@web.de>2012-05-20 10:58:24 +0200
commit370088557375fb5ce8d8d3d3160bccd0cfdcf8c8 (patch)
treebc569dd32e32e4724ebc6ec692cbb4266a65e411 /lib
parent0c5a4bf6c0572f7051376f59a06f8f22b6a8d56b (diff)
downloadNim-370088557375fb5ce8d8d3d3160bccd0cfdcf8c8.tar.gz
fixes #114
Diffstat (limited to 'lib')
-rwxr-xr-xlib/pure/pegs.nim4
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.