]> granicus.if.org Git - postgresql/commitdiff
doc: fix hstore_to_json_loose() doc wording
authorBruce Momjian <bruce@momjian.us>
Wed, 2 Oct 2013 23:25:24 +0000 (19:25 -0400)
committerBruce Momjian <bruce@momjian.us>
Wed, 2 Oct 2013 23:25:30 +0000 (19:25 -0400)
doc/src/sgml/hstore.sgml

index 3810776e6d8509040cbb2d42caf22141429e8f44..fbe9543dfea1be82a21538147a1abaa658e16bfa 100644 (file)
@@ -333,7 +333,7 @@ b
      <row>
       <entry><function>hstore_to_json_loose(hstore)</function><indexterm><primary>hstore_to_json_loose</primary></indexterm></entry>
       <entry><type>json</type></entry>
-      <entry>get <type>hstore</type> as a <type>json</type> value, but attempting to distinguish numerical and Boolean values so they are unquoted in the JSON</entry>
+      <entry>get <type>hstore</type> as a <type>json</type> value, but attempt to distinguish numerical and Boolean values so they are unquoted in the JSON</entry>
       <entry><literal>hstore_to_json_loose('"a key"=&gt;1, b=&gt;t, c=&gt;null, d=&gt;12345, e=&gt;012345, f=&gt;1.234, g=&gt;2.345e+4')</literal></entry>
       <entry><literal>{"a key": 1, "b": true, "c": null, "d": 12345, "e": "012345", "f": 1.234, "g": 2.345e+4}</literal></entry>
      </row>