Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c6a7fcb

Browse files
committed
doc: Fix typos and other minor issues
Author: Alexander Lakhin <exclusion@gmail.com>
1 parent 01edb5c commit c6a7fcb

11 files changed

+14
-13
lines changed

doc/src/sgml/catalogs.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5385,7 +5385,7 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</>:<replaceable>&lt;salt&gt;<
53855385

53865386
<row>
53875387
<entry><structfield>pubname</structfield></entry>
5388-
<entry><type>Name</type></entry>
5388+
<entry><type>name</type></entry>
53895389
<entry></entry>
53905390
<entry>Name of the publication</entry>
53915391
</row>

doc/src/sgml/event-trigger.sgml

+1
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,7 @@
565565
<entry align="center"><literal>X</literal></entry>
566566
<entry align="center"><literal>-</literal></entry>
567567
<entry align="center"><literal>-</literal></entry>
568+
<entry align="center"></entry>
568569
</row>
569570
<row>
570571
<entry align="left"><literal>CREATE USER MAPPING</literal></entry>

doc/src/sgml/indexam.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ amgettuple (IndexScanDesc scan,
559559
a <structname>HeapTuple</> pointer stored at <literal>scan-&gt;xs_hitup</>,
560560
with tuple descriptor <literal>scan-&gt;xs_hitupdesc</>. (The latter
561561
format should be used when reconstructing data that might possibly not fit
562-
into an IndexTuple.) In either case,
562+
into an <structname>IndexTuple</>.) In either case,
563563
management of the data referenced by the pointer is the access method's
564564
responsibility. The data must remain good at least until the next
565565
<function>amgettuple</>, <function>amrescan</>, or <function>amendscan</>

doc/src/sgml/logicaldecoding.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ $ pg_recvlogical -d postgres --slot test --drop-slot
345345
<para>
346346
The <link linkend="view-pg-replication-slots"><structname>pg_replication_slots</structname></link>
347347
view and the
348-
<link linkend="monitoring-stats-views-table"><structname>pg_stat_replication</structname></link>
348+
<link linkend="pg-stat-replication-view"><structname>pg_stat_replication</structname></link>
349349
view provide information about the current state of replication slots and
350350
streaming replication connections respectively. These views apply to both physical and
351351
logical replication.

doc/src/sgml/perform.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1840,7 +1840,7 @@ SELECT * FROM x, y, a, b, c WHERE something AND somethingelse;
18401840
<listitem>
18411841
<para>
18421842
Increase <xref linkend="guc-max-wal-size"> and <xref
1843-
linkend="guc-checkpoint-timeout"> ; this reduces the frequency
1843+
linkend="guc-checkpoint-timeout">; this reduces the frequency
18441844
of checkpoints, but increases the storage requirements of
18451845
<filename>/pg_wal</>.
18461846
</para>

doc/src/sgml/ref/alter_sequence.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ ALTER SEQUENCE [ IF EXISTS ] <replaceable class="parameter">name</replaceable> S
8989
The optional
9090
clause <literal>AS <replaceable class="parameter">data_type</replaceable></literal>
9191
changes the data type of the sequence. Valid types are
92-
are <literal>smallint</literal>, <literal>integer</literal>,
92+
<literal>smallint</literal>, <literal>integer</literal>,
9393
and <literal>bigint</literal>.
9494
</para>
9595

doc/src/sgml/ref/alter_table.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -620,8 +620,8 @@ ALTER TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
620620
<literal>SHARE UPDATE EXCLUSIVE</literal> lock will be taken for
621621
fillfactor and autovacuum storage parameters, as well as the
622622
following planner related parameters:
623-
effective_io_concurrency, parallel_workers, seq_page_cost
624-
random_page_cost, n_distinct and n_distinct_inherited.
623+
<varname>effective_io_concurrency</>, <varname>parallel_workers</>, <varname>seq_page_cost</>,
624+
<varname>random_page_cost</>, <varname>n_distinct</> and <varname>n_distinct_inherited</>.
625625
</para>
626626

627627
<note>

doc/src/sgml/ref/copy.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ COPY <replaceable class="parameter">count</replaceable>
482482
<para>
483483
For identity columns, the <command>COPY FROM</command> command will always
484484
write the column values provided in the input data, like
485-
the <command>INPUT</command> option <literal>OVERRIDING SYSTEM
485+
the <command>INSERT</command> option <literal>OVERRIDING SYSTEM
486486
VALUE</literal>.
487487
</para>
488488

doc/src/sgml/ref/create_sequence.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ SELECT * FROM <replaceable>name</replaceable>;
119119
The optional
120120
clause <literal>AS <replaceable class="parameter">data_type</replaceable></literal>
121121
specifies the data type of the sequence. Valid types are
122-
are <literal>smallint</literal>, <literal>integer</literal>,
122+
<literal>smallint</literal>, <literal>integer</literal>,
123123
and <literal>bigint</literal>. <literal>bigint</literal> is the
124124
default. The data type determines the default minimum and maximum
125125
values of the sequence.

doc/src/sgml/ref/create_table.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -473,8 +473,8 @@ FROM ( { <replaceable class="PARAMETER">numeric_literal</replaceable> | <replace
473473
<firstterm>partitioned</firstterm> table. The parenthesized list of
474474
columns or expressions forms the <firstterm>partition key</firstterm>
475475
for the table. When using range partitioning, the partition key can
476-
include multiple columns or expressions (up to 32, but this limit can
477-
altered when building <productname>PostgreSQL</productname>.), but for
476+
include multiple columns or expressions (up to 32, but this limit can be
477+
altered when building <productname>PostgreSQL</productname>), but for
478478
list partitioning, the partition key must consist of a single column or
479479
expression. If no B-tree operator class is specified when creating a
480480
partitioned table, the default B-tree operator class for the datatype will

doc/src/sgml/release-10.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2905,7 +2905,7 @@
29052905
-->
29062906
<para>
29072907
Overhaul documentation <link linkend="docguide-toolsets">build
2908-
process</> (Alexander Lakhin, Alexander Law)
2908+
process</> (Alexander Lakhin)
29092909
</para>
29102910
</listitem>
29112911

@@ -2919,7 +2919,7 @@
29192919
</para>
29202920

29212921
<para>
2922-
Previously <application>Jade</>, <acronym>DSSSL,</> and
2922+
Previously <application>Jade</>, <acronym>DSSSL</>, and
29232923
<application>JadeTex</> were used.
29242924
</para>
29252925
</listitem>

0 commit comments

Comments
 (0)