renamed writeln to writeLine in lib

This commit is contained in:
patrick dw
2015-06-19 01:02:22 -05:00
parent 072688d06e
commit 15e7fe787a
10 changed files with 25 additions and 25 deletions

View File

@@ -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:
##