summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2009-05-13 21:53:41 +0000
committerTom Lane2009-05-13 21:53:41 +0000
commit19586031452aff2f44bf2d532058faf9d21d584f (patch)
tree8beddb0892e7d2c58e6e180b4680898644a8e587
parent23543c732b7dae41bb7904e2baf02da9a5a51d8d (diff)
Remove a useless backslash from a pattern-match example. Michael Toews
-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 b9d2069b648..01e56925947 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.478 2009/05/03 21:10:27 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.479 2009/05/13 21:53:41 tgl Exp $ -->
<chapter id="functions">
<title>Functions and Operators</title>
@@ -3445,7 +3445,7 @@ SELECT regexp_matches('foobarbequebaz', 'barbeque');
Some examples:
<programlisting>
-SELECT foo FROM regexp_split_to_table('the quick brown fox jumped over the lazy dog', E'\\\s+') AS foo;
+SELECT foo FROM regexp_split_to_table('the quick brown fox jumped over the lazy dog', E'\\s+') AS foo;
foo
--------
the