summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/BurntSushi/toml/encode.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-03-25 19:13:47 +0100
committerWim <wim@42.be>2017-03-25 19:13:47 +0100
commitbe15cc8a36ed3c207251f9b92815781f2fa8618d (patch)
tree2acd08d74feb3cbcd747bdc1f8628469a9899528 /vendor/github.com/BurntSushi/toml/encode.go
parent2f68519b3c6b5a70028882c99afeb76f291b7725 (diff)
downloadmatterbridge-msglm-be15cc8a36ed3c207251f9b92815781f2fa8618d.tar.gz
matterbridge-msglm-be15cc8a36ed3c207251f9b92815781f2fa8618d.tar.bz2
matterbridge-msglm-be15cc8a36ed3c207251f9b92815781f2fa8618d.zip
Update vendored toml. Adds support for inline tables
Diffstat (limited to 'vendor/github.com/BurntSushi/toml/encode.go')
-rw-r--r--vendor/github.com/BurntSushi/toml/encode.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/BurntSushi/toml/encode.go b/vendor/github.com/BurntSushi/toml/encode.go
index 0f2558b2..d905c21a 100644
--- a/vendor/github.com/BurntSushi/toml/encode.go
+++ b/vendor/github.com/BurntSushi/toml/encode.go
@@ -241,7 +241,7 @@ func (enc *Encoder) eArrayOfTables(key Key, rv reflect.Value) {
func (enc *Encoder) eTable(key Key, rv reflect.Value) {
panicIfInvalidKey(key)
if len(key) == 1 {
- // Output an extra new line between top-level tables.
+ // Output an extra newline between top-level tables.
// (The newline isn't written if nothing else has been written though.)
enc.newline()
}