diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/parsecfg.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/parsecfg.nim b/lib/pure/parsecfg.nim index 319f8f625..9b140a809 100644 --- a/lib/pure/parsecfg.nim +++ b/lib/pure/parsecfg.nim @@ -447,7 +447,7 @@ proc newConfig*(): Config = result = newOrderedTable[string, <//>OrderedTableRef[string, string]]() proc loadConfig*(stream: Stream, filename: string = "[stream]"): <//>Config = - ## Loadw the specified configuration from stream into a new Config instance. + ## Loads the specified configuration from stream into a new Config instance. ## `filename` parameter is only used for nicer error messages. var dict = newOrderedTable[string, <//>OrderedTableRef[string, string]]() var curSection = "" ## Current section, |