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

Commit ffb2348

Browse files
committed
doc: Spell checking
1 parent 45f165b commit ffb2348

11 files changed

+17
-17
lines changed

contrib/pg_stat_statements/pg_stat_statements.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Track statement planning and execution times as well as resource
55
* usage across a whole database cluster.
66
*
7-
* Execution costs are totalled for each distinct source query, and kept in
7+
* Execution costs are totaled for each distinct source query, and kept in
88
* a shared hashtable. (We track only as many distinct queries as will fit
99
* in the designated amount of shared memory.)
1010
*

doc/src/sgml/backup-manifest.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</para>
2727

2828
<sect1 id="backup-manifest-toplevel">
29-
<title>Backup Manifest Toplevel Object</title>
29+
<title>Backup Manifest Top-level Object</title>
3030

3131
<para>
3232
The backup manifest JSON document contains the following keys.
@@ -93,7 +93,7 @@
9393
Normally, the <literal>Path</literal> key will be present. The
9494
associated string value is the path of the file relative to the root
9595
of the backup directory. Files located in a user-defined tablespace
96-
will have paths whose first two components are pg_tblspc and the OID
96+
will have paths whose first two components are <filename>pg_tblspc</filename> and the OID
9797
of the tablespace. If the path is not a string that is legal in UTF-8,
9898
or if the user requests that encoded paths be used for all files, then
9999
the <literal>Encoded-Path</literal> key will be present instead. This

doc/src/sgml/extend.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ RETURNS anycompatible AS ...
767767
<literal>false</literal>.
768768
Generally, this should not be set true for extensions that could
769769
allow access to otherwise-superuser-only abilities, such as
770-
filesystem access.
770+
file system access.
771771
</para>
772772
</listitem>
773773
</varlistentry>

doc/src/sgml/fdwhandler.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ AddForeignUpdateTargets(Query *parsetree,
450450
generate junk columns of these names.
451451
If the extra expressions are more complex than simple Vars, they
452452
must be run through <function>eval_const_expressions</function>
453-
before adding them to the targetlist.
453+
before adding them to the target list.
454454
</para>
455455

456456
<para>

doc/src/sgml/glossary.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@
432432
<glossterm>Data directory</glossterm>
433433
<glossdef>
434434
<para>
435-
The base directory on the filesystem of a
435+
The base directory on the file system of a
436436
<glossterm linkend="glossary-server">server</glossterm> that contains all
437437
data files and subdirectories associated with a
438438
<glossterm linkend="glossary-db-cluster">database cluster</glossterm>
@@ -1548,7 +1548,7 @@
15481548
<glossterm>Tablespace</glossterm>
15491549
<glossdef>
15501550
<para>
1551-
A named location on the server filesystem.
1551+
A named location on the server file system.
15521552
All <glossterm linkend="glossary-sql-object">SQL objects</glossterm>
15531553
which require storage beyond their definition in the
15541554
<glossterm linkend="glossary-system-catalog">system catalog</glossterm>
@@ -1646,7 +1646,7 @@
16461646
<glossdef>
16471647
<para>
16481648
Average number of transactions that are executed per second,
1649-
totalled across all sessions active for a measured run.
1649+
totaled across all sessions active for a measured run.
16501650
This is used as a measure of the performance characteristics of
16511651
an instance.
16521652
</para>

doc/src/sgml/maintenance.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ pg_ctl start | rotatelogs /var/log/pgsql_log 86400
998998
In this case, log messages are sent to the old log file until a
999999
successful log rotation. If <application>logrotate</application> is
10001000
configured to compress the log file and delete it, the server may lose
1001-
the messages logged in this timeframe. To avoid this issue, you can
1001+
the messages logged in this time frame. To avoid this issue, you can
10021002
configure the logging collector to dynamically assign log file names
10031003
and use a <literal>prerotate</literal> script to ignore open log files.
10041004
</para>

doc/src/sgml/monitoring.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2470,7 +2470,7 @@ SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event i
24702470
<para>
24712471
Number of transactions spilled to disk after the memory used by
24722472
logical decoding exceeds <literal>logical_decoding_work_mem</literal>. The
2473-
counter gets incremented both for toplevel transactions and
2473+
counter gets incremented both for top-level transactions and
24742474
subtransactions.
24752475
</para></entry>
24762476
</row>

doc/src/sgml/ref/create_table.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1364,8 +1364,8 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
13641364
This only affects columns marked as either External or Extended
13651365
and applies only to new tuples; there is no effect on existing rows.
13661366
By default this parameter is set to allow at least 4 tuples per block,
1367-
which with the default blocksize will be 2040 bytes. Valid values are
1368-
between 128 bytes and the (blocksize - header), by default 8160 bytes.
1367+
which with the default block size will be 2040 bytes. Valid values are
1368+
between 128 bytes and the (block size - header), by default 8160 bytes.
13691369
Changing this value may not be useful for very short or very long rows.
13701370
Note that the default setting is often close to optimal, and
13711371
it is possible that setting this parameter could have negative

doc/src/sgml/ref/pg_dump.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ PostgreSQL documentation
788788
<para>
789789
When <option>--include-foreign-data</option> is specified,
790790
<application>pg_dump</application> does not check that the foreign
791-
table is writeable. Therefore, there is no guarantee that the
791+
table is writable. Therefore, there is no guarantee that the
792792
results of a foreign table dump can be successfully restored.
793793
</para>
794794
</note>

doc/src/sgml/ref/pg_verifybackup.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ PostgreSQL documentation
9393
<literal>backup_manifest</literal> contains information about which
9494
write-ahead log records will be needed, and
9595
<literal>pg_verifybackup</literal> will use that information to
96-
invoke <literal>pg_waldump</literal> to parse those write-ahed log
96+
invoke <literal>pg_waldump</literal> to parse those write-ahead log
9797
records. The <literal>--quiet</literal> flag will be used, so that
9898
<literal>pg_waldump</literal> will only report errors, without producing
9999
any other output. While this level of verification is sufficient to
@@ -143,13 +143,13 @@ PostgreSQL documentation
143143
<listitem>
144144
<para>
145145
Ignore the specified file or directory, which should be expressed
146-
as a relative pathname, when comparing the list of data files
146+
as a relative path name, when comparing the list of data files
147147
actually present in the backup to those listed in the
148148
<literal>backup_manifest</literal> file. If a directory is
149149
specified, this option affects the entire subtree rooted at that
150150
location. Complaints about extra files, missing files, file size
151151
differences, or checksum mismatches will be suppressed if the
152-
relative pathname matches the specified pathname. This option
152+
relative path name matches the specified path name. This option
153153
can be specified multiple times.
154154
</para>
155155
</listitem>

doc/src/sgml/ref/pgbench.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1886,7 +1886,7 @@ SELECT 4 AS four \; SELECT 5 AS five \aset
18861886
<returnvalue>integer</returnvalue>
18871887
</para>
18881888
<para>
1889-
Computes a gaussian-distributed random integer in <literal>[lb,
1889+
Computes a Gaussian-distributed random integer in <literal>[lb,
18901890
ub]</literal>, see below.
18911891
</para>
18921892
<para>

0 commit comments

Comments
 (0)