From: Bruce Momjian Date: Wed, 2 Oct 2013 23:25:24 +0000 (-0400) Subject: doc: fix hstore_to_json_loose() doc wording X-Git-Tag: REL9_4_BETA1~1114 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=eb5d87e5f3b827f5b26fe551006655d80c063d66;p=postgresql.git doc: fix hstore_to_json_loose() doc wording --- diff --git a/doc/src/sgml/hstore.sgml b/doc/src/sgml/hstore.sgml index 3810776e6d8..fbe9543dfea 100644 --- a/doc/src/sgml/hstore.sgml +++ b/doc/src/sgml/hstore.sgml @@ -333,7 +333,7 @@ b hstore_to_json_loose(hstore)hstore_to_json_loose json - get hstore as a json value, but attempting to distinguish numerical and Boolean values so they are unquoted in the JSON + get hstore as a json value, but attempt to distinguish numerical and Boolean values so they are unquoted in the JSON hstore_to_json_loose('"a key"=>1, b=>t, c=>null, d=>12345, e=>012345, f=>1.234, g=>2.345e+4') {"a key": 1, "b": true, "c": null, "d": 12345, "e": "012345", "f": 1.234, "g": 2.345e+4}