Обсуждение: Docs: Standardize "cannot" usage in SGML source

Поиск
Список
Период
Сортировка

Docs: Standardize "cannot" usage in SGML source

От
Chao Li
Дата:
Hi Hacker,

While reviewing a patch, I happened to notice the PG docs prefer “cannot” than “can not”.

Under doc/src/sgml, if we count:
```
sgml % grep -r "cannot" . | wc -l
     818
```

“Cannot” has 818 occurrences, but “can not” has only 3:
```
sgml % grep -rE "can\s+not" .
./ecpg.sgml:     some SQL statement is declared, "database" can not be used as a cursor
./func/func-aggregate.sgml:        The <parameter>key</parameter> can not be null. If the
./func/func-aggregate.sgml:        The <parameter>key</parameter> can not be null. If the
```

So, maybe we should fix these 3 and keep a consistent usage of “cannot”.

Best regards,
--
Chao Li (Evan)
HighGo Software Co., Ltd.
https://www.highgo.com/




Вложения

Re: Docs: Standardize "cannot" usage in SGML source

От
Bruce Momjian
Дата:
On Thu, Dec 11, 2025 at 06:00:20PM +0800, Chao Li wrote:
> Hi Hacker,
> 
> While reviewing a patch, I happened to notice the PG docs prefer “cannot” than
> “can not”.
> 
> Under doc/src/sgml, if we count:
> ```
> sgml % grep -r "cannot" . | wc -l
>      818
> ```
> 
> “Cannot” has 818 occurrences, but “can not” has only 3:

Looks good, patch applied.

-- 
  Bruce Momjian  <bruce@momjian.us>        https://momjian.us
  EDB                                      https://enterprisedb.com

  Do not let urgent matters crowd out time for investment in the future.



Re: Docs: Standardize "cannot" usage in SGML source

От
Chao Li
Дата:

> On Dec 25, 2025, at 04:12, Bruce Momjian <bruce@momjian.us> wrote:
>
> On Thu, Dec 11, 2025 at 06:00:20PM +0800, Chao Li wrote:
>> Hi Hacker,
>>
>> While reviewing a patch, I happened to notice the PG docs prefer “cannot” than
>> “can not”.
>>
>> Under doc/src/sgml, if we count:
>> ```
>> sgml % grep -r "cannot" . | wc -l
>>      818
>> ```
>>
>> “Cannot” has 818 occurrences, but “can not” has only 3:
>
> Looks good, patch applied.
>

Thanks a lot for pushing.

Best regards,
--
Chao Li (Evan)
HighGo Software Co., Ltd.
https://www.highgo.com/