diff options
Diffstat (limited to 'src/config/toml.nim')
-rw-r--r-- | src/config/toml.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/toml.nim b/src/config/toml.nim index e46491c5..fc32f387 100644 --- a/src/config/toml.nim +++ b/src/config/toml.nim @@ -58,7 +58,7 @@ type key*: seq[string] value*: TomlValue - TomlTable = ref object of TomlNode + TomlTable* = ref object of TomlNode key: seq[string] nodes: seq[TomlNode] map: Table[string, TomlValue] |