From a9487c76740ec8481bfe839f318341f716fd5388 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Felipe=20Godoy=20Hern=C3=A1ndez?= Date: Mon, 5 Apr 2021 13:41:07 -0400 Subject: [PATCH] Fix yamldecode example from json to yaml (#28220) * Fix yamldecode example from json to yaml * inline yaml example --- website/docs/language/functions/yamldecode.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/functions/yamldecode.html.md b/website/docs/language/functions/yamldecode.html.md index b24ae72aa..0b9000590 100644 --- a/website/docs/language/functions/yamldecode.html.md +++ b/website/docs/language/functions/yamldecode.html.md @@ -57,7 +57,7 @@ supports only a subset of YAML 1.2, with restrictions including the following: ## Examples ``` -> yamldecode("{\"hello\": \"world\"}") +> yamldecode("hello: world") { "hello" = "world" }