diff options
author | Tom Lane | 2009-05-13 21:53:41 +0000 |
---|---|---|
committer | Tom Lane | 2009-05-13 21:53:41 +0000 |
commit | a85d06ec1899ef8c618107a93b371eaa04f7f9d4 (patch) | |
tree | 443f3c31de8d52ccf7abfb724e29ca4b83bf8a2f | |
parent | f8059d7f8ae8bfac840fbda3c8efbc0f7c09b123 (diff) |
Remove a useless backslash from a pattern-match example. Michael Toews
-rw-r--r-- | doc/src/sgml/func.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
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: <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 |