Fix yamldecode example from json to yaml (#28220)

* Fix yamldecode example from json to yaml

* inline yaml example
This commit is contained in:
Víctor Felipe Godoy Hernández 2021-04-05 13:41:07 -04:00 committed by GitHub
parent 49c984ff77
commit a9487c7674
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ supports only a subset of YAML 1.2, with restrictions including the following:
## Examples ## Examples
``` ```
> yamldecode("{\"hello\": \"world\"}") > yamldecode("hello: world")
{ {
"hello" = "world" "hello" = "world"
} }