Skip to content

Commit b7cbe59

Browse files
mikefarahccoVeille
andauthored
Update pkg/yqlib/encoder_toml.go
Co-authored-by: ccoVeille <[email protected]>
1 parent 56eb365 commit b7cbe59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/yqlib/encoder_toml.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func (te *tomlEncoder) formatScalar(node *CandidateNode) string {
9393
return node.Value
9494
case "!!null":
9595
// TOML does not have null; encode as empty string
96-
return "\"\""
96+
return `""`
9797
default:
9898
return node.Value
9999
}

0 commit comments

Comments
 (0)