diff options
author | Danil Yarantsev <tiberiumk12@gmail.com> | 2021-03-01 00:17:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-28 13:17:19 -0800 |
commit | 56461c280f78c55f538da7f382e1c2c308e04915 (patch) | |
tree | f98e1d9a440725e4bdf3f44a1694aec958299ff6 /lib/pure/parsecfg.nim | |
parent | 26a6ceb34eb2bfca4e39dec2dac2d0a2cdc1bade (diff) | |
download | Nim-56461c280f78c55f538da7f382e1c2c308e04915.tar.gz |
Change stdlib imports to use std prefix in most examples (#17202)
Diffstat (limited to 'lib/pure/parsecfg.nim')
-rw-r--r-- | lib/pure/parsecfg.nim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/pure/parsecfg.nim b/lib/pure/parsecfg.nim index df08135f7..23bb09ac4 100644 --- a/lib/pure/parsecfg.nim +++ b/lib/pure/parsecfg.nim @@ -22,7 +22,7 @@ ## ## .. code-block:: nim ## -## import os, parsecfg, strutils, streams +## import std/[os, parsecfg, strutils, streams] ## ## var f = newFileStream(paramStr(1), fmRead) ## if f != nil: @@ -66,7 +66,7 @@ ## ----------------------------- ## .. code-block:: nim ## -## import parsecfg +## import std/parsecfg ## var dict=newConfig() ## dict.setSectionKey("","charset","utf-8") ## dict.setSectionKey("Package","name","hello") @@ -80,7 +80,7 @@ ## ---------------------------- ## .. code-block:: nim ## -## import parsecfg +## import std/parsecfg ## var dict = loadConfig("config.ini") ## var charset = dict.getSectionValue("","charset") ## var threads = dict.getSectionValue("Package","--threads") @@ -94,7 +94,7 @@ ## ------------------------------ ## .. code-block:: nim ## -## import parsecfg +## import std/parsecfg ## var dict = loadConfig("config.ini") ## dict.setSectionKey("Author","name","lhf") ## dict.writeConfig("config.ini") @@ -103,7 +103,7 @@ ## ---------------------------------------------- ## .. code-block:: nim ## -## import parsecfg +## import std/parsecfg ## var dict = loadConfig("config.ini") ## dict.delSectionKey("Author","email") ## dict.writeConfig("config.ini") @@ -115,7 +115,7 @@ # taken from https://docs.python.org/3/library/configparser.html#supported-ini-file-structure runnableExamples: - import streams + import std/streams var dict = loadConfig(newStringStream("""[Simple Values] key=value |