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

index 83ae386c7b312e99494de0eb28f5a12d60d708c6..293285e79eef0b6469b098ca08cd7c35902efded 100644 (file)
@@ -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