From b7cbe59fd755f8af4912f350144e6f080771b7ec Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Sat, 20 Dec 2025 15:37:55 +1100 Subject: [PATCH] Update pkg/yqlib/encoder_toml.go Co-authored-by: ccoVeille <3875889+ccoVeille@users.noreply.github.com> --- pkg/yqlib/encoder_toml.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/yqlib/encoder_toml.go b/pkg/yqlib/encoder_toml.go index 94987e80..82fc331c 100644 --- a/pkg/yqlib/encoder_toml.go +++ b/pkg/yqlib/encoder_toml.go @@ -93,7 +93,7 @@ func (te *tomlEncoder) formatScalar(node *CandidateNode) string { return node.Value case "!!null": // TOML does not have null; encode as empty string - return "\"\"" + return `""` default: return node.Value }