Skip to content

Commit 39dfbe5

Browse files
committed
Spellchecking run, final cleanups
1 parent 1630571 commit 39dfbe5

34 files changed

+248
-261
lines changed

doc/src/sgml/array.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.45 2005/11/04 02:56:30 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.46 2005/11/04 23:13:59 petere Exp $ -->
22

33
<sect1 id="arrays">
44
<title>Arrays</title>
@@ -59,7 +59,7 @@ CREATE TABLE tictactoe (
5959
all considered to be of the same type, regardless of size or number
6060
of dimensions. So, declaring number of dimensions or sizes in
6161
<command>CREATE TABLE</command> is simply documentation, it does not
62-
affect runtime behavior.
62+
affect run-time behavior.
6363
</para>
6464

6565
<para>

doc/src/sgml/backup.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.74 2005/10/26 20:42:35 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.75 2005/11/04 23:13:59 petere Exp $
33
-->
44
<chapter id="backup">
55
<title>Backup and Restore</title>
@@ -598,7 +598,7 @@ archive_command = 'test ! -f .../%f &amp;&amp; cp %p .../%f'
598598
</para>
599599

600600
<para>
601-
In writing your archive command, you should assume that the filenames to
601+
In writing your archive command, you should assume that the file names to
602602
be archived may be up to 64 characters long and may contain any
603603
combination of ASCII letters, digits, and dots. It is not necessary to
604604
remember the original full path (<literal>%p</>) but it is necessary to
@@ -1173,7 +1173,7 @@ restore_command = 'copy /mnt/server/archivedir/%f "%p"' # Windows
11731173
the total volume of archived logs by turning off page snapshots
11741174
using the <xref linkend="guc-full-page-writes"> parameter.
11751175
(Read the notes and warnings in
1176-
<xref linkend="reliability"> before you do so.)
1176+
<xref linkend="wal"> before you do so.)
11771177
Turning off page snapshots does not prevent use of the logs for PITR
11781178
operations.
11791179
An area for future development is to compress archived WAL data by

doc/src/sgml/catalogs.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
Documentation of the system catalogs, directed toward PostgreSQL developers
3-
$PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.114 2005/09/13 01:51:18 alvherre Exp $
3+
$PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.115 2005/11/04 23:13:59 petere Exp $
44
-->
55

66
<chapter id="catalogs">
@@ -5416,7 +5416,7 @@
54165416
and <structfield>histogram_bounds</> arrays can be set on a
54175417
column-by-column basis using the <command>ALTER TABLE SET STATISTICS</>
54185418
command, or globally by setting the
5419-
<xref linkend="guc-default-statistics-target"> runtime parameter.
5419+
<xref linkend="guc-default-statistics-target"> run-time parameter.
54205420
</para>
54215421

54225422
</sect1>

doc/src/sgml/charset.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/charset.sgml,v 2.74 2005/10/13 21:43:43 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/charset.sgml,v 2.75 2005/11/04 23:13:59 petere Exp $ -->
22

33
<chapter id="charset">
44
<title>Localization</>
@@ -504,7 +504,7 @@ initdb --locale=sv_SE
504504
<row>
505505
<entry><literal>MULE_INTERNAL</literal></entry>
506506
<entry>Mule internal code</entry>
507-
<entry>Multi-lingual Emacs</entry>
507+
<entry>Multilingual Emacs</entry>
508508
<entry>1-4</entry>
509509
<entry></entry>
510510
</row>

doc/src/sgml/client-auth.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/client-auth.sgml,v 1.85 2005/10/24 15:49:54 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/client-auth.sgml,v 1.86 2005/11/04 23:13:59 petere Exp $
33
-->
44

55
<chapter id="client-authentication">
@@ -901,7 +901,7 @@ omicron bryanh guest1
901901
default PAM service name is <literal>postgresql</literal>. You can
902902
optionally supply your own service name after the <literal>pam</>
903903
key word in the file <filename>pg_hba.conf</filename>.
904-
PAM is used only to validate username/password pairs.
904+
PAM is used only to validate user name/password pairs.
905905
Therefore the user must already exist in the database before PAM
906906
can be used for authentication. For more information about
907907
PAM, please read the <ulink url="http://www.kernel.org/pub/linux/libs/pam/">

doc/src/sgml/config.sgml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.34 2005/11/01 23:19:05 neilc Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.35 2005/11/04 23:13:59 petere Exp $
33
-->
44
<chapter Id="runtime-config">
55
<title>Server Configuration</title>
@@ -21,7 +21,7 @@ $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.34 2005/11/01 23:19:05 neilc Exp
2121

2222
<para>
2323
All parameter names are case-insensitive. Every parameter takes a
24-
value of one of four types: boolean, integer, floating point,
24+
value of one of four types: Boolean, integer, floating point,
2525
or string. Boolean values may be written as <literal>ON</literal>,
2626
<literal>OFF</literal>, <literal>TRUE</literal>,
2727
<literal>FALSE</literal>, <literal>YES</literal>,
@@ -456,9 +456,9 @@ SET ENABLE_SEQSCAN TO OFF;
456456
</indexterm>
457457
<listitem>
458458
<para>
459-
On systems that support the TCP_KEEPIDLE socket option, specifies the
459+
On systems that support the <symbol>TCP_KEEPIDLE</symbol> socket option, specifies the
460460
number of seconds between sending keepalives on an otherwise idle
461-
connection. A value of 0 uses the system default. If TCP_KEEPIDLE is
461+
connection. A value of 0 uses the system default. If <symbol>TCP_KEEPIDLE</symbol> is
462462
not supported, this parameter must be 0. This option is ignored for
463463
connections made via a Unix-domain socket.
464464
</para>
@@ -472,9 +472,9 @@ SET ENABLE_SEQSCAN TO OFF;
472472
</indexterm>
473473
<listitem>
474474
<para>
475-
On systems that support the TCP_KEEPINTVL socket option, specifies how
475+
On systems that support the <symbol>TCP_KEEPINTVL</symbol> socket option, specifies how
476476
long, in seconds, to wait for a response to a keepalive before
477-
retransmitting. A value of 0 uses the system default. If TCP_KEEPINTVL
477+
retransmitting. A value of 0 uses the system default. If <symbol>TCP_KEEPINTVL</symbol>
478478
is not supported, this parameter must be 0. This option is ignored
479479
for connections made via a Unix-domain socket.
480480
</para>
@@ -488,9 +488,9 @@ SET ENABLE_SEQSCAN TO OFF;
488488
</indexterm>
489489
<listitem>
490490
<para>
491-
On systems that support the TCP_KEEPCNT socket option, specifies how
491+
On systems that support the <symbol>TCP_KEEPCNT</symbol> socket option, specifies how
492492
many keepalives may be lost before the connection is considered dead.
493-
A value of 0 uses the system default. If TCP_KEEPCNT is not
493+
A value of 0 uses the system default. If <symbol>TCP_KEEPCNT</symbol> is not
494494
supported, this parameter must be 0. This option is ignored
495495
for connections made via a Unix-domain socket.
496496
</para>
@@ -590,13 +590,13 @@ SET ENABLE_SEQSCAN TO OFF;
590590
</indexterm>
591591
<listitem>
592592
<para>
593-
Sets the hostname part of the service principal.
593+
Sets the host name part of the service principal.
594594
This, combined with <varname>krb_srvname</>, is used to generate
595595
the complete service principal, that is
596596
<varname>krb_srvname</><literal>/</><varname>krb_server_hostname</><literal>@</>REALM.
597597
</para>
598598
<para>
599-
If not set, the default is the server hostname. See <xref linkend="kerberos-auth">
599+
If not set, the default is the server host name. See <xref linkend="kerberos-auth">
600600
for details. This parameter can only be set at server start.
601601
</para>
602602
</listitem>
@@ -609,7 +609,7 @@ SET ENABLE_SEQSCAN TO OFF;
609609
</indexterm>
610610
<listitem>
611611
<para>
612-
Sets whether Kerberos usernames should be treated case-insensitively.
612+
Sets whether Kerberos user names should be treated case-insensitively.
613613
The default is <literal>off</> (case sensitive). This parameter
614614
can only be set at server start.
615615
</para>
@@ -2258,8 +2258,8 @@ SELECT * FROM parent WHERE key = 2400;
22582258
<varname>log_rotation_age</varname> to <literal>60</literal>, and
22592259
<varname>log_rotation_size</varname> to <literal>1000000</literal>.
22602260
Including <literal>%M</> in <varname>log_filename</varname> allows
2261-
any size-driven rotations that may occur to select a filename
2262-
different from the hour's initial filename.
2261+
any size-driven rotations that may occur to select a file name
2262+
different from the hour's initial file name.
22632263
</para>
22642264
</listitem>
22652265
</varlistentry>
@@ -2663,7 +2663,7 @@ SELECT * FROM parent WHERE key = 2400;
26632663
</row>
26642664
<row>
26652665
<entry><literal>%h</literal></entry>
2666-
<entry>Remote Hostname or IP address</entry>
2666+
<entry>Remote host name or IP address</entry>
26672667
<entry>yes</entry>
26682668
</row>
26692669
<row>
@@ -2794,7 +2794,7 @@ SELECT * FROM parent WHERE key = 2400;
27942794
</sect1>
27952795

27962796
<sect1 id="runtime-config-statistics">
2797-
<title>Runtime Statistics</title>
2797+
<title>Run-Time Statistics</title>
27982798

27992799
<sect2 id="runtime-config-statistics-monitor">
28002800
<title>Statistics Monitoring</title>

0 commit comments

Comments
 (0)