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

Commit 5ec30fa

Browse files
committed
Spell checker run
1 parent cc4f22c commit 5ec30fa

27 files changed

+183
-194
lines changed

doc/src/sgml/array.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.40 2004/11/27 21:27:05 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.41 2004/12/13 18:05:07 petere Exp $ -->
22

33
<sect1 id="arrays">
44
<title>Arrays</title>
@@ -547,8 +547,8 @@ SELECT * FROM sal_emp WHERE 10000 = ALL (pay_by_quarter);
547547
equal to one, an additional decoration that indicates the actual
548548
array dimensions will precede the array structure decoration.
549549
The decoration consists of square braces (<literal>[</> and <literal>]</>)
550-
around each array dimension's lower and upper bound indicies, plus
551-
a colon (<literal>:</>) delimiter character inbetween. Delimiting the
550+
around each array dimension's lower and upper bound indices, plus
551+
a colon (<literal>:</>) delimiter character in between. Delimiting the
552552
array dimension decoration from the array structure decoration is a
553553
single assignment operator (<literal>=</>). For example:
554554
<programlisting>
@@ -569,7 +569,7 @@ SELECT ARRAY[1,2] || ARRAY[[3,4]] AS array;
569569
</para>
570570

571571
<para>
572-
In a similar fashion, an array with non-default indicies may be specified
572+
In a similar fashion, an array with non-default indices may be specified
573573
using the same literal syntax. For example:
574574
<programlisting>
575575
SELECT f1[1][-2][3] AS e1, f1[1][-1][5] AS e2

doc/src/sgml/backup.sgml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.52 2004/11/17 18:29:02 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.53 2004/12/13 18:05:07 petere Exp $
33
-->
44
<chapter id="backup">
55
<title>Backup and Restore</title>
@@ -317,7 +317,7 @@ tar -cf backup.tar /usr/local/pgsql/data
317317
get a usable backup. Half-way measures such as disallowing all
318318
connections will <emphasis>not</emphasis> work
319319
(mainly because <command>tar</command> and similar tools do not take an
320-
atomic snapshot of the state of the filesystem at a point in
320+
atomic snapshot of the state of the file system at a point in
321321
time). Information about stopping the server can be found in
322322
<xref linkend="postmaster-shutdown">. Needless to say that you
323323
also need to shut down the server before restoring the data.
@@ -365,7 +365,7 @@ tar -cf backup.tar /usr/local/pgsql/data
365365
If your database is spread across multiple volumes (for example,
366366
data files and WAL log on different disks) there may not be any way
367367
to obtain exactly-simultaneous frozen snapshots of all the volumes.
368-
Read your filesystem documentation very carefully before trusting
368+
Read your file system documentation very carefully before trusting
369369
to the consistent-snapshot technique in such situations.
370370
</para>
371371

@@ -402,7 +402,7 @@ tar -cf backup.tar /usr/local/pgsql/data
402402
database can be restored to consistency by <quote>replaying</> the
403403
log entries made since the last checkpoint. However, the existence
404404
of the log makes it possible to use a third strategy for backing up
405-
databases: we can combine a filesystem-level backup with backup of
405+
databases: we can combine a file-system-level backup with backup of
406406
the WAL files. If recovery is needed, we restore the backup and
407407
then replay from the backed-up WAL files to bring the backup up to
408408
current time. This approach is more complex to administer than
@@ -414,7 +414,7 @@ tar -cf backup.tar /usr/local/pgsql/data
414414
We do not need a perfectly consistent backup as the starting point.
415415
Any internal inconsistency in the backup will be corrected by log
416416
replay (this is not significantly different from what happens during
417-
crash recovery). So we don't need filesystem snapshot capability,
417+
crash recovery). So we don't need file system snapshot capability,
418418
just <application>tar</> or a similar archiving tool.
419419
</para>
420420
</listitem>
@@ -449,7 +449,7 @@ tar -cf backup.tar /usr/local/pgsql/data
449449
</para>
450450

451451
<para>
452-
As with the plain filesystem-backup technique, this method can only
452+
As with the plain file-system-backup technique, this method can only
453453
support restoration of an entire database cluster, not a subset.
454454
Also, it requires a lot of archival storage: the base backup may be bulky,
455455
and a busy system will generate many megabytes of WAL traffic that
@@ -618,7 +618,7 @@ archive_command = 'test ! -f .../%f &amp;&amp; cp %p .../%f'
618618
<filename>postgresql.conf</>, <filename>pg_hba.conf</> and
619619
<filename>pg_ident.conf</>) after the initial base backup.
620620
You may wish to keep the configuration files in a location that will
621-
be backed up by your regular filesystem backup procedures.
621+
be backed up by your regular file system backup procedures.
622622
</para>
623623
</sect2>
624624

@@ -655,7 +655,7 @@ SELECT pg_start_backup('label');
655655
</listitem>
656656
<listitem>
657657
<para>
658-
Perform the backup, using any convenient filesystem-backup tool
658+
Perform the backup, using any convenient file-system-backup tool
659659
such as <application>tar</> or <application>cpio</>. It is neither
660660
necessary nor desirable to stop normal operation of the database
661661
while you do this.
@@ -867,7 +867,7 @@ restore_command = 'cp /mnt/server/archivedir/%f %p'
867867
It is important that the command return nonzero exit status on failure.
868868
The command <emphasis>will</> be asked for log files that are not present
869869
in the archive; it must return nonzero when so asked. This is not an
870-
error condition. Be aware also that the basename of the <literal>%p</>
870+
error condition. Be aware also that the base name of the <literal>%p</>
871871
path will be different from <literal>%f</>; do not expect them to be
872872
interchangeable.
873873
</para>
@@ -948,7 +948,7 @@ restore_command = 'copy /mnt/server/archivedir/%f "%p"' # Windows
948948
</term>
949949
<listitem>
950950
<para>
951-
This parameter specifies the timestamp up to which recovery
951+
This parameter specifies the time stamp up to which recovery
952952
will proceed.
953953
At most one of <varname>recovery_target_time</> and
954954
<xref linkend="recovery-target-xid"> can be specified.
@@ -1098,7 +1098,7 @@ restore_command = 'copy /mnt/server/archivedir/%f "%p"' # Windows
10981098
<itemizedlist>
10991099
<listitem>
11001100
<para>
1101-
Operations on non-btree indexes (hash, R-tree, and GiST indexes) are
1101+
Operations on non-B-tree indexes (hash, R-tree, and GiST indexes) are
11021102
not presently WAL-logged, so replay will not update these index types.
11031103
The recommended workaround is to manually <command>REINDEX</> each
11041104
such index after completing a recovery operation.
@@ -1196,7 +1196,7 @@ psql template1 < backup
11961196

11971197
<para>
11981198
You will always need a SQL dump (<application>pg_dump</> dump) for
1199-
migrating to a new release. Filesystem-level backups (including
1199+
migrating to a new release. File-system-level backups (including
12001200
on-line backups) will not work, for the same reason that you can't
12011201
just do the update in-place: the file formats won't necessarily be
12021202
compatible across major releases.

doc/src/sgml/catalogs.sgml

Lines changed: 4 additions & 4 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.93 2004/12/01 19:00:27 tgl Exp $
3+
$PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.94 2004/12/13 18:05:07 petere Exp $
44
-->
55

66
<chapter id="catalogs">
@@ -980,7 +980,7 @@
980980
represents converting from one type to another and applying a length
981981
coercion in a single step. When no such entry is available, coercion
982982
to a type that uses a type modifier involves two steps, one to
983-
convert between datatypes and a second to apply the modifier.
983+
convert between data types and a second to apply the modifier.
984984
</para>
985985
</sect1>
986986

@@ -1037,7 +1037,7 @@
10371037
<entry><type>oid</type></entry>
10381038
<entry><literal><link linkend="catalog-pg-type"><structname>pg_type</structname></link>.oid</literal></entry>
10391039
<entry>
1040-
The OID of the data type that corresponds to this table's rowtype,
1040+
The OID of the data type that corresponds to this table's row type,
10411041
if any (zero for indexes, which have no <structname>pg_type</> entry)
10421042
</entry>
10431043
</row>
@@ -2010,7 +2010,7 @@
20102010
<row>
20112011
<entry><structfield>indclass</structfield></entry>
20122012
<entry><type>oidvector</type></entry>
2013-
<entry><link linkend="catalog-pg-opclass"><structname>pg_opclass</structname></link>.oid</entry>
2013+
<entry><literal><link linkend="catalog-pg-opclass"><structname>pg_opclass</structname></link>.oid</literal></entry>
20142014
<entry>
20152015
For each column in the index key this contains the OID of
20162016
the operator class to use. See

doc/src/sgml/ddl.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/ddl.sgml,v 1.33 2004/11/27 21:27:06 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.34 2004/12/13 18:05:08 petere Exp $ -->
22

33
<chapter id="ddl">
44
<title>Data Definition</title>
@@ -1148,7 +1148,7 @@ WHERE c.altitude &gt; 500 and c.tableoid = p.oid;
11481148
<literal>UNIQUE</> or a <literal>PRIMARY KEY</>, this would not stop the
11491149
<structname>capitals</> table from having rows with names duplicating
11501150
rows in <structname>cities</>. And those duplicate rows would by
1151-
default show up in SELECTs from <structname>cities</>. In fact, by
1151+
default show up in queries from <structname>cities</>. In fact, by
11521152
default <structname>capitals</> would have no unique constraint at all,
11531153
and so could contain multiple rows with the same name.
11541154
You could add a unique constraint to <structname>capitals</>, but this

doc/src/sgml/external-projects.sgml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/external-projects.sgml,v 1.4 2004/12/03 06:30:40 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/external-projects.sgml,v 1.5 2004/12/13 18:05:08 petere Exp $
33
-->
44

55
<chapter id="external-projects">
@@ -43,16 +43,6 @@ $PostgreSQL: pgsql/doc/src/sgml/external-projects.sgml,v 1.4 2004/12/03 06:30:40
4343
popular interfaces are:
4444

4545
<variablelist>
46-
<varlistentry>
47-
<term>ODBC</term>
48-
<listitem>
49-
<para>
50-
This is the most common interface for <application>Windows</>
51-
applications.
52-
</para>
53-
</listitem>
54-
</varlistentry>
55-
5646
<varlistentry>
5747
<term>psqlODBC</term>
5848
<listitem>
@@ -155,7 +145,7 @@ $PostgreSQL: pgsql/doc/src/sgml/external-projects.sgml,v 1.4 2004/12/03 06:30:40
155145
separate projects. <application>pgFoundry</> at <ulink
156146
url="http://pgfoundry.org">http://pgfoundry.org</ulink> contains
157147
even more projects. Other projects are not even hosted on these
158-
servers and you will have to do an internet search to find them.
148+
servers and you will have to do an Internet search to find them.
159149
</para>
160150

161151
</sect1>
@@ -171,21 +161,21 @@ $PostgreSQL: pgsql/doc/src/sgml/external-projects.sgml,v 1.4 2004/12/03 06:30:40
171161
<productname>PostgreSQL</> was designed from the start to be
172162
extensible. For this reason, extensions loaded into the database can
173163
function just like features that are packaged with the database. The
174-
<filename>/contrib</> directory shipped with the source code
164+
<filename>contrib/</> directory shipped with the source code
175165
contains a large number of extensions. The <filename>README</> file
176166
in that directory contains a summary. They include conversion tools,
177167
full-text indexing, <acronym>XML</> tools, and additional data types
178168
and indexing methods. Other extensions are developed independently,
179169
like <application>PostGIS</>. Even <application>PostgreSQL</>
180170
replication solutions are developed externally. For example,
181-
<application>Slony</> is a popular master/slave replication solution
171+
<application>Slony-I</> is a popular master/slave replication solution
182172
that is developed independently from the main projects.
183173
</para>
184174

185175
<para>
186176
There are several administration tools available for
187177
<productname>PostgreSQL</>. The most popular is
188-
<application>pgadmin</>, and there are several commercially
178+
<application>pgAdmin</>, and there are several commercially
189179
available ones.
190180
</para>
191181

doc/src/sgml/func.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/func.sgml,v 1.229 2004/12/03 18:34:31 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.230 2004/12/13 18:05:08 petere Exp $
33
PostgreSQL documentation
44
-->
55

@@ -8553,7 +8553,7 @@ SELECT pg_type_is_visible('myschema.widget'::regtype);
85538553
<row>
85548554
<entry><literal><function>pg_get_serial_sequence</function>(<parameter>table_name</parameter>, <parameter>column_name</parameter>)</literal></entry>
85558555
<entry><type>text</type></entry>
8556-
<entry>get name of the sequence that a serial or bigserial column
8556+
<entry>get name of the sequence that a <type>serial</type> or <type>bigserial</type> column
85578557
uses</entry>
85588558
</row>
85598559
<row>
@@ -8801,7 +8801,7 @@ SELECT set_config('log_statement_stats', 'off', false);
88018801
This function returns 1 if successful, 0 if not successful.
88028802
The process ID (<literal>pid</literal>) of an active backend can be found
88038803
from the <structfield>procpid</structfield> column in the
8804-
<structname>pg_stat_activity</structname> view, or by listing the postgres
8804+
<structname>pg_stat_activity</structname> view, or by listing the <command>postgres</command>
88058805
processes on the server with <application>ps</>.
88068806
</para>
88078807

doc/src/sgml/installation.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.211 2004/12/11 20:54:14 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.212 2004/12/13 18:05:08 petere Exp $ -->
22

33
<chapter id="installation">
44
<title><![%standalone-include[<productname>PostgreSQL</>]]>
@@ -173,8 +173,8 @@ su - postgres
173173
<para>
174174
To build the <application>PL/Python</> server programming
175175
language, you need a <productname>Python</productname>
176-
installation with the header files and the distutils module.
177-
The distutils module is included by default with
176+
installation with the header files and the <application>distutils</application> module.
177+
The <application>distutils</application> module is included by default with
178178
<productname>Python</productname> 1.6 and later; users of
179179
earlier versions of <productname>Python</productname> will need
180180
to install it.

doc/src/sgml/libpq.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/libpq.sgml,v 1.170 2004/12/02 15:32:52 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.171 2004/12/13 18:05:08 petere Exp $
33
-->
44

55
<chapter id="libpq">
@@ -1203,7 +1203,7 @@ about such errors.
12031203
</para>
12041204

12051205
<para>
1206-
At present, there is no way to determine the actual datatype inferred for
1206+
At present, there is no way to determine the actual data type inferred for
12071207
any parameters whose types are not specified in <parameter>paramTypes[]</>.
12081208
This is a <application>libpq</> omission that will probably be rectified
12091209
in a future release.

doc/src/sgml/maintenance.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/maintenance.sgml,v 1.38 2004/11/15 06:32:14 neilc Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/maintenance.sgml,v 1.39 2004/12/13 18:05:08 petere Exp $
33
-->
44

55
<chapter id="maintenance">
@@ -183,7 +183,7 @@ $PostgreSQL: pgsql/doc/src/sgml/maintenance.sgml,v 1.38 2004/11/15 06:32:14 neil
183183
basis, consider doing it with <command>TRUNCATE</command> rather
184184
than using <command>DELETE</command> followed by
185185
<command>VACUUM</command>. <command>TRUNCATE</command> removes the
186-
entire content of the table immediately, without recquiring a
186+
entire content of the table immediately, without requiring a
187187
subsequent <command>VACUUM</command> or <command>VACUUM
188188
FULL</command> to reclaim the now-unused disk space.
189189
</para>
@@ -502,7 +502,7 @@ pg_ctl start | rotatelogs /var/log/pgsql_log 86400
502502
just when you need them the most. Also, on <productname>linux</>,
503503
<application>syslog</> will sync each message to disk, yielding poor
504504
performance. (You can use a <literal>-</> at the start of the file name
505-
in the <application>syslog</> config file to disable this behavior.)
505+
in the <application>syslog</> configuration file to disable this behavior.)
506506
</para>
507507

508508
<para>

doc/src/sgml/manage-ag.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/manage-ag.sgml,v 2.37 2004/12/02 19:28:48 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/manage-ag.sgml,v 2.38 2004/12/13 18:05:08 petere Exp $
33
-->
44

55
<chapter id="managing-databases">
@@ -379,10 +379,10 @@ CREATE TABLESPACE fastspace LOCATION '/mnt/sda1/postgresql/data';
379379
<note>
380380
<para>
381381
There is usually not much point in making more than one
382-
tablespace per logical filesystem, since you cannot control the location
383-
of individual files within a logical filesystem. However,
382+
tablespace per logical file system, since you cannot control the location
383+
of individual files within a logical file system. However,
384384
<productname>PostgreSQL</> does not enforce any such limitation, and
385-
indeed it is not directly aware of the filesystem boundaries on your
385+
indeed it is not directly aware of the file system boundaries on your
386386
system. It just stores files in the directories you tell it to use.
387387
</para>
388388
</note>

doc/src/sgml/plperl.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/plperl.sgml,v 2.33 2004/12/11 20:03:37 petere Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/plperl.sgml,v 2.34 2004/12/13 18:05:08 petere Exp $
33
-->
44

55
<chapter id="plperl">
@@ -295,7 +295,7 @@ $$ LANGUAGE plperl;
295295
<para>
296296
Here is an example of a PL/Perl function returning a row set of a
297297
composite type. Since a row set is always a reference to an array
298-
and a composite type is always a reference to a hash, a rowset of a
298+
and a composite type is always a reference to a hash, a row set of a
299299
composite type is a reference to an array of hash references.
300300
<programlisting>
301301
CREATE TYPE testsetperl AS (f1 integer, f2 text, f3 text);

doc/src/sgml/plpgsql.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/plpgsql.sgml,v 1.50 2004/12/03 17:12:09 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.51 2004/12/13 18:05:08 petere Exp $
33
-->
44

55
<chapter id="plpgsql">
@@ -2576,7 +2576,7 @@ CREATE TRIGGER emp_stamp BEFORE INSERT OR UPDATE ON emp
25762576

25772577
<para>
25782578
This example trigger ensures that any insert, update or delete of a row
2579-
in the emp table is recorded (i.e. audited) in the emp_audit table.
2579+
in the <literal>emp</literal> table is recorded (i.e., audited) in the <literal>emp_audit</literal> table.
25802580
The current time and user name are stamped into the row, together with
25812581
the type of operation performed on it.
25822582
</para>

doc/src/sgml/protocol.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/protocol.sgml,v 1.55 2004/11/15 06:32:14 neilc Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/protocol.sgml,v 1.56 2004/12/13 18:05:08 petere Exp $ -->
22

33
<chapter id="protocol">
44
<title>Frontend/Backend Protocol</title>
@@ -902,7 +902,7 @@
902902
The function call was completed and returned the result given
903903
in the message.
904904
(Note that the Function Call protocol can only handle a single
905-
scalar result, not a rowtype or set of results.)
905+
scalar result, not a row type or set of results.)
906906
</Para>
907907
</ListItem>
908908
</VarListEntry>

0 commit comments

Comments
 (0)