diff options
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)) |