From 370088557375fb5ce8d8d3d3160bccd0cfdcf8c8 Mon Sep 17 00:00:00 2001 From: Araq Date: Sun, 20 May 2012 10:58:24 +0200 Subject: [PATCH] fixes #114 --- lib/pure/pegs.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.