aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gustafsson <dgustafsson@postgresql.org>2022-04-10 21:42:43 +0200
committerDaniel Gustafsson <dgustafsson@postgresql.org>2022-04-10 21:42:43 +0200
commitcd959b1b0662c9d57540b31961680c38037ffcd6 (patch)
tree257d6069d0677f9525a6dd874e90fb9a543670ee
parentb6b8824ee771eecb84830903fad50a7f6853639d (diff)
downloadpostgresql-cd959b1b0662c9d57540b31961680c38037ffcd6.tar.gz
postgresql-cd959b1b0662c9d57540b31961680c38037ffcd6.zip
Doc: fix typos in documentation
Commits 39969e2a1e4 and 5c279a6d350 accidentally included a typo each in the user facing documentation.
-rw-r--r--doc/src/sgml/backup.sgml2
-rw-r--r--doc/src/sgml/custom-rmgr.sgml2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml
index 6812e9ec661..5b147a746de 100644
--- a/doc/src/sgml/backup.sgml
+++ b/doc/src/sgml/backup.sgml
@@ -889,7 +889,7 @@ SELECT pg_backup_start(label => 'label', fast => false);
regularly scheduled checkpoint to complete, which may take a long time (see the
configuration parameters <xref linkend="guc-checkpoint-timeout"/> and
<xref linkend="guc-checkpoint-completion-target"/>). This is
- usually preferrable as it minimizes the impact on the running system. If you
+ usually preferable as it minimizes the impact on the running system. If you
want to start the backup as soon as possible, pass <literal>true</literal> as
the second parameter to <function>pg_backup_start</function> and it will
request an immediate checkpoint, which will finish as fast as possible using
diff --git a/doc/src/sgml/custom-rmgr.sgml b/doc/src/sgml/custom-rmgr.sgml
index 17a4f1dfbde..dd917c54b62 100644
--- a/doc/src/sgml/custom-rmgr.sgml
+++ b/doc/src/sgml/custom-rmgr.sgml
@@ -19,7 +19,7 @@
an extension to implement.
</para>
<para>
- To create a new custom WAL resouce manager, first define an
+ To create a new custom WAL resource manager, first define an
<structname>RmgrData</structname> structure with implementations for the
resource manager methods. Refer to
<filename>src/backend/access/transam/README</filename> and