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-Tag: REL8_4_BETA2~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19586031452aff2f44bf2d532058faf9d21d584f;p=postgresql 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 b9d2069b64..01e5692594 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ - + Functions and Operators @@ -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