diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2009-11-16 08:38:31 +0100 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2009-11-16 08:38:31 +0100 |
commit | 3710309d39f65718ab5990d53a977acb241432a9 (patch) | |
tree | 572893ca9aa111e3356a3892a4ba6729c12c6c65 /lib | |
parent | 281609c358b139d55461af842ce29f39f01b2441 (diff) | |
download | Nim-3710309d39f65718ab5990d53a977acb241432a9.tar.gz |
nimrod compiles again
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/pure/strutils.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/pure/strutils.nim b/lib/pure/strutils.nim index d17c48740..a07b8a9f7 100755 --- a/lib/pure/strutils.nim +++ b/lib/pure/strutils.nim @@ -9,7 +9,6 @@ ## This module contains various string utility routines. ## See the module `regexprs` for regular expression support. -## All the routines here are avaiable for the EMCAScript target too! {.deadCodeElim: on.} @@ -27,7 +26,7 @@ template newException(exceptn, message: expr): expr = type - TCharSet* = set[char] # for compability with Nim + TCharSet* = set[char] # for compatibility with Nim const Whitespace* = {' ', '\t', '\v', '\r', '\l', '\f'} |