summary refs log tree commit diff stats
path: root/lib/impure/re.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-01-13 23:27:24 +0100
committerAraq <rumpf_a@web.de>2011-01-13 23:27:24 +0100
commitddb49e069e528d48733ee62defddd6926bd8b443 (patch)
treeab4dd7730d44a08e29ff790f460c0033ebe9c6e4 /lib/impure/re.nim
parent1a8c6fb49fd9e12168895266c0067240e2bcb897 (diff)
downloadNim-ddb49e069e528d48733ee62defddd6926bd8b443.tar.gz
httpserver may work better now
Diffstat (limited to 'lib/impure/re.nim')
-rwxr-xr-xlib/impure/re.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/re.nim b/lib/impure/re.nim
index a3fb86332..bce786087 100755
--- a/lib/impure/re.nim
+++ b/lib/impure/re.nim
@@ -55,7 +55,7 @@ proc rawCompile(pattern: string, flags: cint): PPcre =
   return com
 
 proc finalizeRegEx(x: TRegEx) = 
-  # XXX This is a hack, but PCRE does not export it's "free" function properly.
+  # XXX This is a hack, but PCRE does not export its "free" function properly.
   # Sigh. The hack relies on PCRE's implementation (see ``pcre_get.c``).
   # Fortunately the implementation is unlikely to change. 
   pcre.free_substring(cast[cstring](x.h))