From ec16b611e888f2656b79bd59b0f7d382dc983796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sun, 23 Dec 2018 21:12:41 +0100 Subject: [PATCH] docs: Adjust CSV example See #5555 --- content/en/functions/transform.Unmarshal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/functions/transform.Unmarshal.md b/content/en/functions/transform.Unmarshal.md index 6e3328963..7197a6eb1 100644 --- a/content/en/functions/transform.Unmarshal.md +++ b/content/en/functions/transform.Unmarshal.md @@ -45,6 +45,6 @@ comment Example: ```go-html-template -{{ $csv := "a;b;c" | transform.Unmarshal (dict "comma" ";") }} +{{ $csv := "a;b;c" | transform.Unmarshal (dict "delimiter" ";") }} ```