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

Commit 83e42a0

Browse files
committed
doc: Fix some grammar and typos
This fixes some areas related to logical replication and custom RMGRs. Author: Ekaterina Kiryanova Discussion: https://postgr.es/m/fa4773f1-1396-384a-bcd7-85b5e013f399@postgrespro.ru Backpatch-through: 15
1 parent 24ef127 commit 83e42a0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

doc/src/sgml/custom-rmgr.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ typedef struct RmgrData
6666
* Register a new custom WAL resource manager.
6767
*
6868
* Resource manager IDs must be globally unique across all extensions. Refer
69-
* to https://wiki.postgresql.org/wiki/CustomWALResourceManager to reserve a
69+
* to https://wiki.postgresql.org/wiki/CustomWALResourceManagers to reserve a
7070
* unique RmgrId for your extension, to avoid conflicts with other extension
7171
* developers. During development, use RM_EXPERIMENTAL_ID to avoid needlessly
7272
* reserving a new ID.
@@ -76,8 +76,8 @@ extern void RegisterCustomRmgr(RmgrId rmid, RmgrData *rmgr);
7676
<function>RegisterCustomRmgr</function> must be called from the
7777
extension module's <link linkend="xfunc-c-dynload">_PG_init</link> function.
7878
While developing a new extension, use <literal>RM_EXPERIMENTAL_ID</literal>
79-
for <parameter>rmid</parameter>. When you ready to release the extension to
80-
users, reserve a new resource manager ID at the <ulink
79+
for <parameter>rmid</parameter>. When you are ready to release the extension
80+
to users, reserve a new resource manager ID at the <ulink
8181
url="https://wiki.postgresql.org/wiki/CustomWALResourceManagers">Custom WAL
8282
Resource Manager</ulink> page.
8383
</para>

doc/src/sgml/func.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25554,7 +25554,7 @@ SELECT collation for ('foo' COLLATE "de_DE");
2555425554
will be logged at
2555525555
<literal>LOG</literal> message level. They will appear in
2555625556
the server log based on the log configuration set
25557-
(See <xref linkend="runtime-config-logging"/> for more information),
25557+
(see <xref linkend="runtime-config-logging"/> for more information),
2555825558
but will not be sent to the client regardless of
2555925559
<xref linkend="guc-client-min-messages"/>.
2556025560
</para></entry>

doc/src/sgml/logical-replication.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -688,18 +688,18 @@ test_sub=# SELECT * FROM t3;
688688
<itemizedlist>
689689
<listitem>
690690
<para>
691-
one of the publications has no row filter.
691+
One of the publications has no row filter.
692692
</para>
693693
</listitem>
694694
<listitem>
695695
<para>
696-
one of the publications was created using <literal>FOR ALL TABLES</literal>.
696+
One of the publications was created using <literal>FOR ALL TABLES</literal>.
697697
This clause does not allow row filters.
698698
</para>
699699
</listitem>
700700
<listitem>
701701
<para>
702-
one of the publications was created using
702+
One of the publications was created using
703703
<literal>FOR TABLES IN SCHEMA</literal> and the table belongs to
704704
the referred schema. This clause does not allow row filters.
705705
</para>

src/backend/access/transam/rmgr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ RmgrNotFound(RmgrId rmid)
8989
* Register a new custom WAL resource manager.
9090
*
9191
* Resource manager IDs must be globally unique across all extensions. Refer
92-
* to https://wiki.postgresql.org/wiki/CustomWALResourceManager to reserve a
92+
* to https://wiki.postgresql.org/wiki/CustomWALResourceManagers to reserve a
9393
* unique RmgrId for your extension, to avoid conflicts with other extension
9494
* developers. During development, use RM_EXPERIMENTAL_ID to avoid needlessly
9595
* reserving a new ID.

0 commit comments

Comments
 (0)