From a85d06ec1899ef8c618107a93b371eaa04f7f9d4 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 13 May 2009 21:53:41 +0000 Subject: [PATCH] Remove a useless backslash from a pattern-match example. Michael Toews --- doc/src/sgml/func.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5