diff options
author | Araq <rumpf_a@web.de> | 2011-01-13 23:27:24 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-01-13 23:27:24 +0100 |
commit | ddb49e069e528d48733ee62defddd6926bd8b443 (patch) | |
tree | ab4dd7730d44a08e29ff790f460c0033ebe9c6e4 /lib/impure/re.nim | |
parent | 1a8c6fb49fd9e12168895266c0067240e2bcb897 (diff) | |
download | Nim-ddb49e069e528d48733ee62defddd6926bd8b443.tar.gz |
httpserver may work better now
Diffstat (limited to 'lib/impure/re.nim')
-rwxr-xr-x | lib/impure/re.nim | 2 |
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)) |