Pattern Matching doc

From: Michael Toews <mwtoews(at)sfu(dot)ca>
To: pgsql-docs <pgsql-docs(at)postgresql(dot)org>
Subject: Pattern Matching doc
Date: 2009-05-13 21:03:28
Message-ID: 1795543218.12078841242248608590.JavaMail.root@jaguar9.sfu.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

Hi,

I've noticed two issues with the 8.4 documentation, see:
http://www.postgresql.org/docs/8.4/static/functions-matching.html

Firstly, search for "///". This should only have two slashes "//".

Secondly, search for "An RE cannot..." after the table named "Regular Expression Atoms". I think this should be changed to "A regular expression pattern cannot..." (or alternatively, "A pattern cannot...".

I've produced a diff output using pgsql/browser/trunk/pgsql/doc/src/sgml/func.sgml from CVS

3448c3448
< 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;
3648c3648
< An RE cannot end with <literal>\</>.
---
> A regular expression pattern cannot end with <literal>\</>.

Regards,
-Mike

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Tom Lane 2009-05-13 21:52:15 Re: Pattern Matching doc
Previous Message Magnus Hagander 2009-05-08 11:34:29 Re: [GENERAL] how to select temp table