summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2009-10-13 22:46:13 +0000
committerPeter Eisentraut <peter_e@gmx.net>2009-10-13 22:46:13 +0000
commit207b4da51d2da0b9ce6ea2b2a86e9de22df0d689 (patch)
treedb3119011bc7f9b6495555ee5ff8ca55b5db946b
parent42ec8ad6286be046d86fc9f09bb4cdeefc395bfe (diff)
Replace unmatched " by &quot; to avoid throwing off syntax highlighters.
-rw-r--r--doc/src/sgml/func.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 211a450ce30..3cec9f97bc5 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.489 2009/10/10 03:50:15 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.490 2009/10/13 22:46:13 petere Exp $ -->
<chapter id="functions">
<title>Functions and Operators</title>
@@ -3230,7 +3230,7 @@ cast(-44 as bit(12)) <lineannotation>111111010100</lineannotation>
</para>
<para>
- Some examples, with <literal>#"</> delimiting the return string:
+ Some examples, with <literal>#&quot;</> delimiting the return string:
<programlisting>
substring('foobar' from '%#"o_b#"%' for '#') <lineannotation>oob</lineannotation>
substring('foobar' from '#"o_b#"%' for '#') <lineannotation>NULL</lineannotation>