From ad864c61d98dbe0fde8faaa31fe9226133435ec6 Mon Sep 17 00:00:00 2001 From: Reza Behzadan Date: Sun, 18 Feb 2024 15:37:23 +0330 Subject: [PATCH] Fix typo --- internal/dict/dict_serialization.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dict/dict_serialization.go b/internal/dict/dict_serialization.go index a991fc1..b7ca5c3 100644 --- a/internal/dict/dict_serialization.go +++ b/internal/dict/dict_serialization.go @@ -39,7 +39,7 @@ func (d Dict) DumpYaml(fn string) error { return os.WriteFile(fn, data, 0644) // Write with user read/write, group read, and others read permissions } -func (d Dict) dumpYamlStr() (string, error) { +func (d Dict) DumpYamlStr() (string, error) { data, err := yaml.Marshal(d) if err != nil { return "", err