Fix json_to_map example output

This commit is contained in:
Harrissou Sant-anna 2021-03-08 12:56:22 +01:00 committed by GitHub
parent a216ffc5fa
commit ed6a85894c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,6 @@
"description": "Creates a map from a json-formatted string.",
"arguments": [
{"arg":"string", "description":"the input string"}],
"examples": [ { "expression":"json_to_map('{\"qgis\":\"rocks\"}')", "returns":"{ \"qgis\" : \"rocks\" }"}
"examples": [ { "expression":"json_to_map('{\"qgis\":\"rocks\"}')", "returns":"{ 'qgis': 'rocks' }"}
]
}