diff options
Diffstat (limited to 'std/encoding/toml.ts')
-rw-r--r-- | std/encoding/toml.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/encoding/toml.ts b/std/encoding/toml.ts index 0bd0ee984..6cd8faa71 100644 --- a/std/encoding/toml.ts +++ b/std/encoding/toml.ts @@ -464,7 +464,7 @@ class Parser { for (let i = 0; i < this.tomlLines.length; i++) { const line = this.tomlLines[i]; - // TODO (zekth) Handle unflat of array of tables + // TODO(zekth): Handle unflat of array of tables if (this._isGroup(line)) { // if the current group is an array we push the // parsed objects in it. |