diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2016-02-29 11:25:51 +0000 |
---|---|---|
committer | Federico Ceratto <federico.ceratto@gmail.com> | 2016-02-29 11:25:51 +0000 |
commit | d9cb85c2d81a447130307d0004b0ef515f3ff241 (patch) | |
tree | ef91d7dd981d91b4632cc1c9a0069d28a75464ce /lib/impure | |
parent | bd95bf58bfab31034db346d946e8e3b6bb5d19cc (diff) | |
download | Nim-d9cb85c2d81a447130307d0004b0ef515f3ff241.tar.gz |
Spellcheck
Diffstat (limited to 'lib/impure')
-rw-r--r-- | lib/impure/nre.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/impure/nre.nim b/lib/impure/nre.nim index 10700b59b..c8f690461 100644 --- a/lib/impure/nre.nim +++ b/lib/impure/nre.nim @@ -1,6 +1,6 @@ # # Nim's Runtime Library -# (c) Copyright 2015 Nim Contributers +# (c) Copyright 2015 Nim Contributors # # See the file "copying.txt", included in this # distribution, for details about the copyright. @@ -508,7 +508,7 @@ iterator findIter*(str: string, pattern: Regex, start = 0, endpos = int.high): R ## Variants: ## ## - ``proc findAll(...)`` returns a ``seq[string]`` - # see pcredemo for explaination + # see pcredemo for explanation let matchesCrLf = pattern.matchesCrLf() let unicode = uint32(getinfo[culong](pattern, pcre.INFO_OPTIONS) and pcre.UTF8) > 0u32 |