From cccfa08c39e194e7737d444974173e47a87b62c8 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Wed, 25 Oct 2023 09:40:55 +0900 Subject: [PATCH] doc: Fix some typos and grammar Author: Ekaterina Kiryanova, Elena Indrupskaya, Oleg Sibiryakov, Maxim Yablokov Discussion: https://postgr.es/m/7aad518b-3e6d-47f3-9184-b1d69cb412e7@postgrespro.ru Backpatch-through: 11 --- doc/src/sgml/charset.sgml | 2 +- doc/src/sgml/client-auth.sgml | 2 +- doc/src/sgml/installation.sgml | 4 ++-- doc/src/sgml/nls.sgml | 2 +- doc/src/sgml/pgwalinspect.sgml | 2 +- doc/src/sgml/ref/create_foreign_table.sgml | 2 +- doc/src/sgml/system-views.sgml | 2 +- doc/src/sgml/xact.sgml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/src/sgml/charset.sgml b/doc/src/sgml/charset.sgml index 25febcac4c0..975b9dc9523 100644 --- a/doc/src/sgml/charset.sgml +++ b/doc/src/sgml/charset.sgml @@ -1158,7 +1158,7 @@ SELECT 'w;x*y-z' = 'wxyz' COLLATE num_ignore_punct; -- true shows which textual feature differences are considered significant when determining equality at the - given level. The unicode character U+2063 is an + given level. The Unicode character U+2063 is an invisible separator, and as seen in the table, is ignored for at all levels of comparison less than identic. diff --git a/doc/src/sgml/client-auth.sgml b/doc/src/sgml/client-auth.sgml index 73e3b39e8b4..2f1bd6fc8a7 100644 --- a/doc/src/sgml/client-auth.sgml +++ b/doc/src/sgml/client-auth.sgml @@ -984,7 +984,7 @@ mymap /^(.*)@otherdomain\.com$ guest a slash (/), the remainder of the field is treated as a regular expression (see for details of PostgreSQL's regular - expression syntax. It is not possible to use \1 + expression syntax). It is not possible to use \1 to use a capture from regular expression on system-username for a regular expression on database-username. diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index 8e0b2705d34..9b25e9fdb1b 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -2090,9 +2090,9 @@ ninja configure with the option to select the one you want to use and then build using meson compile. To learn more about these backends and other arguments you can provide to - ninja, you can refer to the meson - documentation. + Meson documentation. diff --git a/doc/src/sgml/nls.sgml b/doc/src/sgml/nls.sgml index 9b6a7da870d..0ad1b2c9c45 100644 --- a/doc/src/sgml/nls.sgml +++ b/doc/src/sgml/nls.sgml @@ -205,7 +205,7 @@ make update-po The PO files can be edited with a regular text editor. There are also several specialized editors for PO files which can help the process with - translation specific features. + translation-specific features. There is (unsurprisingly) a PO mode for Emacs, which can be quite useful. diff --git a/doc/src/sgml/pgwalinspect.sgml b/doc/src/sgml/pgwalinspect.sgml index 762ad698176..3a8121c70f1 100644 --- a/doc/src/sgml/pgwalinspect.sgml +++ b/doc/src/sgml/pgwalinspect.sgml @@ -209,7 +209,7 @@ block_fpi_data | The pg_filenode_relation function (see ) can help you to - determine which relation was modified during original execution + determine which relation was modified during original execution. diff --git a/doc/src/sgml/ref/create_foreign_table.sgml b/doc/src/sgml/ref/create_foreign_table.sgml index ae1f94b9de7..dc4b9075990 100644 --- a/doc/src/sgml/ref/create_foreign_table.sgml +++ b/doc/src/sgml/ref/create_foreign_table.sgml @@ -376,7 +376,7 @@ WITH ( MODULUS numeric_literal, REM an UPDATE that changes the partition key value can cause a row to be moved from a local partition to a foreign-table partition, provided the foreign data wrapper supports tuple routing. - However it is not currently possible to move a row from a + However, it is not currently possible to move a row from a foreign-table partition to another partition. An UPDATE that would require doing that will fail due to the partitioning constraint, assuming that that is properly diff --git a/doc/src/sgml/system-views.sgml b/doc/src/sgml/system-views.sgml index 2b35c2f91b3..970b3bd44b0 100644 --- a/doc/src/sgml/system-views.sgml +++ b/doc/src/sgml/system-views.sgml @@ -1608,7 +1608,7 @@ Apply transaction locks are used in parallel mode to apply the transaction - in logical replication. The remote transaction id is displayed in the + in logical replication. The remote transaction ID is displayed in the transactionid column. The objsubid displays the lock subtype which is 0 for the lock used to synchronize the set of changes, and 1 for the lock used to wait for the transaction to diff --git a/doc/src/sgml/xact.sgml b/doc/src/sgml/xact.sgml index 1813cd07748..0f768a23a69 100644 --- a/doc/src/sgml/xact.sgml +++ b/doc/src/sgml/xact.sgml @@ -156,7 +156,7 @@ When a top-level transaction with an xid commits, all of its subcommitted child subtransactions are also persistently recorded - as committed in the pg_xact directory. If the + as committed in the pg_xact subdirectory. If the top-level transaction aborts, all its subtransactions are also aborted, even if they were subcommitted.