From: Tom Lane Date: Wed, 13 May 2009 21:53:41 +0000 (+0000) Subject: Remove a useless backslash from a pattern-match example. Michael Toews X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=a85d06ec1899ef8c618107a93b371eaa04f7f9d4;p=users%2Fsimon%2Fpostgres.git Remove a useless backslash from a pattern-match example. Michael Toews --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 83ae386c7b..293285e79e 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -3445,7 +3445,7 @@ SELECT regexp_matches('foobarbequebaz', 'barbeque'); Some examples: -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