diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-11-02 15:14:41 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-11-02 15:14:41 +0900 |
commit | 8a15e735be00f156a7227741c0ce88702e6de099 (patch) | |
tree | cbf4c769323851d32da23f4d58895be79dcf2787 /doc/src | |
parent | 644f0d7cc9c2cb270746f2024c706554e0fbec82 (diff) | |
download | postgresql-8a15e735be00f156a7227741c0ce88702e6de099.tar.gz postgresql-8a15e735be00f156a7227741c0ce88702e6de099.zip |
Fix some grammar and typos in comments and docs
The documentation fixes are backpatched down to where they apply.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20201031020801.GD3080@telsasoft.com
Backpatch-through: 9.6
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/auto-explain.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/ddl.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/ref/pg_rewind.sgml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/auto-explain.sgml b/doc/src/sgml/auto-explain.sgml index 192d6574c30..30e35a714a5 100644 --- a/doc/src/sgml/auto-explain.sgml +++ b/doc/src/sgml/auto-explain.sgml @@ -200,7 +200,7 @@ LOAD 'auto_explain'; <listitem> <para> <varname>auto_explain.log_settings</varname> controls whether information - about modified configuration options is printed when execution plan is logged. + about modified configuration options is printed when an execution plan is logged. Only options affecting query planning with value different from the built-in default value are included in the output. This parameter is off by default. Only superusers can change this setting. diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index c4897d68c9b..872f7a7fac2 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -3919,7 +3919,7 @@ CREATE INDEX ON measurement (logdate); <para> Normally the set of partitions established when initially defining the - table are not intended to remain static. It is common to want to + table is not intended to remain static. It is common to want to remove old partitions of data and periodically add new partitions for new data. One of the most important advantages of partitioning is precisely that it allows this otherwise painful task to be executed diff --git a/doc/src/sgml/ref/pg_rewind.sgml b/doc/src/sgml/ref/pg_rewind.sgml index 688acdcb06a..43282e6016f 100644 --- a/doc/src/sgml/ref/pg_rewind.sgml +++ b/doc/src/sgml/ref/pg_rewind.sgml @@ -74,7 +74,7 @@ PostgreSQL documentation <application>pg_rewind</application> with the <literal>-c</literal> option to automatically retrieve them from the WAL archive. The use of <application>pg_rewind</application> is not limited to failover, e.g., a standby - server can be promoted, run some write transactions, and then rewinded + server can be promoted, run some write transactions, and then rewound to become a standby again. </para> |