diff options
author | Strømberg <Stromberg90@users.noreply.github.com> | 2017-12-17 10:57:05 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-12-17 10:57:05 +0100 |
commit | 01649e3eb5c0336526437de036795f66b3050bc8 (patch) | |
tree | 263a95a42676084739e7f7fdd4b67e331af0b8cb /lib/pure | |
parent | 35133d97ef955a4bd19b8922078ff75ff39f7782 (diff) | |
download | Nim-01649e3eb5c0336526437de036795f66b3050bc8.tar.gz |
Name error in example (#6935)
Name error, example didn't compile .
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/parsecsv.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/parsecsv.nim b/lib/pure/parsecsv.nim index ca0f3f9e0..071858b7c 100644 --- a/lib/pure/parsecsv.nim +++ b/lib/pure/parsecsv.nim @@ -32,7 +32,7 @@ ## import parsecsv ## import os ## # Prepare a file -## var csv_content = """One,Two,Three,Four +## var content = """One,Two,Three,Four ## 1,2,3,4 ## 10,20,30,40 ## 100,200,300,400 |