diff options
author | patrick dw <algorithicimperative@gmail.com> | 2015-06-19 01:02:22 -0500 |
---|---|---|
committer | patrick dw <algorithicimperative@gmail.com> | 2015-06-19 01:02:22 -0500 |
commit | 15e7fe787a2bf89b82aeba965ed4fd8b200dca1a (patch) | |
tree | a23d002fa90f66c98b80db84e3de2d8a19365316 /lib/impure/re.nim | |
parent | 072688d06ebe757993f4a17e51e5e74145eb65fd (diff) | |
download | Nim-15e7fe787a2bf89b82aeba965ed4fd8b200dca1a.tar.gz |
renamed writeln to writeLine in lib
Diffstat (limited to 'lib/impure/re.nim')
-rw-r--r-- | 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 5f9371f28..0df8d4a9c 100644 --- a/lib/impure/re.nim +++ b/lib/impure/re.nim @@ -369,7 +369,7 @@ iterator split*(s: string, sep: Regex): string = ## ## .. code-block:: nim ## for word in split("00232this02939is39an22example111", re"\d+"): - ## writeln(stdout, word) + ## writeLine(stdout, word) ## ## Results in: ## |