diff options
Diffstat (limited to 'doc/src/sgml/hstore.sgml')
-rw-r--r-- | doc/src/sgml/hstore.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/hstore.sgml b/doc/src/sgml/hstore.sgml index 8a1caa35761..14a36ade00a 100644 --- a/doc/src/sgml/hstore.sgml +++ b/doc/src/sgml/hstore.sgml @@ -631,7 +631,7 @@ b Does <type>hstore</type> contain key? </para> <para> - <literal>exist('a=>1','a')</literal> + <literal>exist('a=>1', 'a')</literal> <returnvalue>t</returnvalue> </para></entry> </row> @@ -647,7 +647,7 @@ b for key? </para> <para> - <literal>defined('a=>NULL','a')</literal> + <literal>defined('a=>NULL', 'a')</literal> <returnvalue>f</returnvalue> </para></entry> </row> @@ -662,7 +662,7 @@ b Deletes pair with matching key. </para> <para> - <literal>delete('a=>1,b=>2','b')</literal> + <literal>delete('a=>1,b=>2', 'b')</literal> <returnvalue>"a"=>"1"</returnvalue> </para></entry> </row> @@ -676,7 +676,7 @@ b Deletes pairs with matching keys. </para> <para> - <literal>delete('a=>1,b=>2,c=>3',ARRAY['a','b'])</literal> + <literal>delete('a=>1,b=>2,c=>3', ARRAY['a','b'])</literal> <returnvalue>"c"=>"3"</returnvalue> </para></entry> </row> @@ -690,7 +690,7 @@ b Deletes pairs matching those in the second argument. </para> <para> - <literal>delete('a=>1,b=>2','a=>4,b=>2'::hstore)</literal> + <literal>delete('a=>1,b=>2', 'a=>4,b=>2'::hstore)</literal> <returnvalue>"a"=>"1"</returnvalue> </para></entry> </row> |