summaryrefslogtreecommitdiff
path: root/doc/src/sgml/hstore.sgml
diff options
context:
space:
mode:
authorPeter Eisentraut2013-05-21 01:13:13 +0000
committerPeter Eisentraut2013-05-21 01:13:13 +0000
commit256f6ba78a379733ff05d3c3d2239ca7fc56fb9e (patch)
treefe78ec4c6e732d097afd1e247e6c7a82513490db /doc/src/sgml/hstore.sgml
parent30b5ede7157e34e77c7914b8ecfd55aa8da6edc3 (diff)
Documentation spell checking and markup improvements
Diffstat (limited to 'doc/src/sgml/hstore.sgml')
-rw-r--r--doc/src/sgml/hstore.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/hstore.sgml b/doc/src/sgml/hstore.sgml
index b20108da79c..73c421d463f 100644
--- a/doc/src/sgml/hstore.sgml
+++ b/doc/src/sgml/hstore.sgml
@@ -325,7 +325,7 @@ b
<row>
<entry><function>hstore_to_json(hstore)</function></entry>
<entry><type>json</type></entry>
- <entry>get <type>hstore</type> as a json value</entry>
+ <entry>get <type>hstore</type> as a <type>json</type> value</entry>
<entry><literal>hstore_to_json('"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": "t", "c": null, "d": "12345", "e": "012345", "f": "1.234", "g": "2.345e+4"}</literal></entry>
</row>
@@ -333,7 +333,7 @@ b
<row>
<entry><function>hstore_to_json_loose(hstore)</function></entry>
<entry><type>json</type></entry>
- <entry>get <type>hstore</type> as a json 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 attempting 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>