-
-
Notifications
You must be signed in to change notification settings - Fork 528
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
58 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: arp242 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
/* | ||
Package toml implements decoding and encoding of TOML files. | ||
This package supports TOML v1.0.0, as listed on https://toml.io | ||
There is also support for delaying decoding with the Primitive type, and | ||
querying the set of keys in a TOML document with the MetaData type. | ||
The github.com/BurntSushi/toml/cmd/tomlv package implements a TOML validator, | ||
and can be used to verify if TOML document is valid. It can also be used to | ||
print the type of each key. | ||
*/ | ||
// Package toml implements decoding and encoding of TOML files. | ||
// | ||
// This package supports TOML v1.0.0, as specified at https://toml.io | ||
// | ||
// There is also support for delaying decoding with the Primitive type, and | ||
// querying the set of keys in a TOML document with the MetaData type. | ||
// | ||
// The github.com/BurntSushi/toml/cmd/tomlv package implements a TOML validator, | ||
// and can be used to verify if TOML document is valid. It can also be used to | ||
// print the type of each key. | ||
package toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters