Remove a useless backslash from a pattern-match example. Michael Toews
authorTom Lane
Wed, 13 May 2009 21:53:41 +0000 (21:53 +0000)
committerTom Lane
Wed, 13 May 2009 21:53:41 +0000 (21:53 +0000)
doc/src/sgml/func.sgml

index b9d2069b648500aa641af6d22825f0bcaba3b228..01e56925947b2bf3761ececbc6da2e0f9fe83650 100644 (file)
@@ -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