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/pure/pegs.nim | |
parent | 072688d06ebe757993f4a17e51e5e74145eb65fd (diff) | |
download | Nim-15e7fe787a2bf89b82aeba965ed4fd8b200dca1a.tar.gz |
renamed writeln to writeLine in lib
Diffstat (limited to 'lib/pure/pegs.nim')
-rw-r--r-- | lib/pure/pegs.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/pegs.nim b/lib/pure/pegs.nim index e165d7dca..28f6a17e6 100644 --- a/lib/pure/pegs.nim +++ b/lib/pure/pegs.nim @@ -979,7 +979,7 @@ iterator split*(s: string, sep: Peg): string = ## ## .. code-block:: nim ## for word in split("00232this02939is39an22example111", peg"\d+"): - ## writeln(stdout, word) + ## writeLine(stdout, word) ## ## Results in: ## |