Re: Manua correction - Mailing list pgsql-docs

From Tom Lane
Subject Re: Manua correction
Date
Msg-id 400208.1626793389@sss.pgh.pa.us
Whole thread Raw
In response to Re: Manua correction  (Bruce Momjian <bruce@momjian.us>)
Responses Re: Manua correction  (Bruce Momjian <bruce@momjian.us>)
List pgsql-docs
Bruce Momjian <bruce@momjian.us> writes:
> On Thu, Jul 15, 2021 at 11:12:38PM -0400, Tom Lane wrote:
>> At least two of these changes are flat out wrong.  The places
>> that explicitly mention "substring(s)" are not doing so because
>> we failed to think about what that meant.

> I really don't understand the use of "(s)" except in place where we are
> really trying to point out the idea of one or multiple, and I don't see
> that being significant in these cases --- can you clarify?

See the example given for regexp_match:

regression=# select regexp_match('foobarbequebaz', '(bar)(beque)'); 
 regexp_match 
--------------
 {bar,beque}
(1 row)

There's more than one parenthesized subpattern, so you get more than
one substring in the result.  So I think that change is flat out
wrong.

The places where you changed "substring(s)" to "substrings" are maybe
not flat wrong, but I don't think they're improving the text either.
IIRC, in most of them you get one match if you didn't use the 'g'
flag, but possibly multiple matches if you did, and the "substring(s)"
wording is meant to allude to that without taking the space to spell
it out explicitly.

            regards, tom lane



pgsql-docs by date:

Previous
From: Elena Indrupskaya
Date:
Subject: Minor language edits for PostgreSQL 14 Release Notes
Next
From: Bruce Momjian
Date:
Subject: Re: Manua correction