Обсуждение: Probably some fixes in syntax.sgml

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

Probably some fixes in syntax.sgml

От
"Виктор Вислобоков"
Дата:
Hello, All.

In syntax.sgml at line 131:

...
   <para>
    <indexterm><primary>identifier</primary><secondary>length</secondary></indexterm>
    The system uses no more than <symbol>NAMEDATALEN</symbol>-1
    bytes of an identifier; longer names can be written in
....

probably must be:
...
<indexterm>
  <primary>identifier</primary>
  <secondary>length</secondary>
</indexterm>

 <para>
    The system uses no more than <symbol>NAMEDATALEN</symbol>-1
    bytes of an identifier; longer names can be written in
...

What you think?

Re: Probably some fixes in syntax.sgml

От
Tom Lane
Дата:
"=?KOI8-R?B?98nL1M/SIPfJ08zPws/Lz9c=?=" <corochoone@gmail.com> writes:
> Hello, All.
> In syntax.sgml at line 131:

> ...
>    <para>
>     <indexterm><primary>identifier</primary><secondary>length</secondary></indexterm>
>     The system uses no more than <symbol>NAMEDATALEN</symbol>-1
>     bytes of an identifier; longer names can be written in
> ....

> probably must be:
> ...
> <indexterm>
>   <primary>identifier</primary>
>   <secondary>length</secondary>
> </indexterm>

>  <para>
>     The system uses no more than <symbol>NAMEDATALEN</symbol>-1
>     bytes of an identifier; longer names can be written in
> ...

> What you think?

AFAICS it's fine as-is.

            regards, tom lane