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

Commit 9293425

Browse files
committed
spell checker run
1 parent 96ee6ff commit 9293425

22 files changed

+98
-98
lines changed

doc/src/sgml/backup.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/backup.sgml,v 2.107 2007/10/16 19:44:18 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.108 2007/11/28 15:42:30 petere Exp $ -->
22

33
<chapter id="backup">
44
<title>Backup and Restore</title>
@@ -1034,7 +1034,7 @@ restore_command = 'cp /mnt/server/archivedir/%f %p'
10341034
(The path name is relative to the working directory of the server,
10351035
i.e., the cluster's data directory.)
10361036
Any <literal>%r</> is replaced by the name of the file containing the
1037-
last valid restartpoint. That is the earliest file that must be kept
1037+
last valid restart point. That is the earliest file that must be kept
10381038
to allow a restore to be restartable, so this information can be used
10391039
to truncate the archive to just the minimum required to support
10401040
restart of the current restore. <literal>%r</> would only be used in a
@@ -1479,7 +1479,7 @@ if (!triggered)
14791479
<para>
14801480
The size of the WAL archive can be minimized by using the <literal>%r</>
14811481
option of the <varname>restore_command</>. This option specifies the
1482-
last archive filename that needs to be kept to allow the recovery to
1482+
last archive file name that needs to be kept to allow the recovery to
14831483
restart correctly. This can be used to truncate the archive once
14841484
files are no longer required, if the archive is writable from the
14851485
standby server.

doc/src/sgml/config.sgml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.157 2007/11/28 05:01:24 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.158 2007/11/28 15:42:30 petere Exp $ -->
22

33
<chapter Id="runtime-config">
44
<title>Server Configuration</title>
@@ -608,7 +608,7 @@ SET ENABLE_SEQSCAN TO OFF;
608608
</indexterm>
609609
<listitem>
610610
<para>
611-
Sets the realm to match Kerberos, GSSAPI and SSPI usernames against.
611+
Sets the realm to match Kerberos, GSSAPI and SSPI user names against.
612612
See <xref linkend="kerberos-auth">, <xref linkend="gssapi-auth"> or
613613
<xref linkend="sspi-auth"> for details. This parameter can only be
614614
set at server start.
@@ -3166,12 +3166,11 @@ local0.* /var/log/postgresql
31663166
Including <literal>csvlog</> in the <varname>log_destination</> list
31673167
provides a convenient way to import log files into a database table.
31683168
This option emits log lines in comma-separated-value format,
3169-
with these columns: timestamp with milliseconds, username, database
3170-
name, session id, host:port number, process id, per-process line
3171-
number, command tag, session start time, virtual transaction id,
3169+
with these columns: timestamp with milliseconds, user name, database
3170+
name, session ID, host:port number, process ID, per-process line
3171+
number, command tag, session start time, virtual transaction ID,
31723172
regular transaction id, error severity, SQL state code, error message.
31733173
Here is a sample table definition for storing CSV-format log output:
3174-
</para>
31753174

31763175
<programlisting>
31773176
CREATE TABLE postgres_log
@@ -3193,15 +3192,16 @@ CREATE TABLE postgres_log
31933192
PRIMARY KEY (session_id, process_line_num)
31943193
);
31953194
</programlisting>
3195+
</para>
31963196

31973197
<para>
31983198
To import a log file into this table, use the <command>COPY FROM</>
31993199
command:
3200-
</para>
32013200

32023201
<programlisting>
32033202
COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
32043203
</programlisting>
3204+
</para>
32053205

32063206
<para>
32073207
There are a few things you need to do to simplify importing CSV log
@@ -3221,7 +3221,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
32213221
<listitem>
32223222
<para>
32233223
Set <varname>log_rotation_size</varname> to 0 to disable
3224-
size-based log rotation, as it makes the log filename difficult
3224+
size-based log rotation, as it makes the log file name difficult
32253225
to predict.
32263226
</para>
32273227
</listitem>

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.76 2007/06/20 23:11:38 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.77 2007/11/28 15:42:31 petere Exp $ -->
22

33
<chapter id="ddl">
44
<title>Data Definition</title>
@@ -2793,7 +2793,7 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2006-01-01';
27932793
range tests for range partitioning, as illustrated in the preceding
27942794
examples. A good rule of thumb is that partitioning constraints should
27952795
contain only comparisons of the partitioning column(s) to constants
2796-
using btree-indexable operators.
2796+
using B-tree-indexable operators.
27972797
</para>
27982798
</listitem>
27992799

doc/src/sgml/func.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.413 2007/11/28 05:13:41 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.414 2007/11/28 15:42:31 petere Exp $ -->
22

33
<chapter id="functions">
44
<title>Functions and Operators</title>
@@ -1313,7 +1313,7 @@
13131313
<entry>
13141314
<acronym>ASCII</acronym> code of the first character of the
13151315
argument. For <acronym>UTF8</acronym> returns the Unicode code
1316-
point of the character. For other multi-byte encodings. the
1316+
point of the character. For other multibyte encodings. the
13171317
argument must be a strictly <acronym>ASCII</acronym> character.
13181318
</entry>
13191319
<entry><literal>ascii('x')</literal></entry>
@@ -1338,7 +1338,7 @@
13381338
<entry><type>text</type></entry>
13391339
<entry>
13401340
Character with the given code. For <acronym>UTF8</acronym> the
1341-
argument is treated as a Unicode code point. For other multi-byte
1341+
argument is treated as a Unicode code point. For other multibyte
13421342
encodings the argument must designate a strictly
13431343
<acronym>ASCII</acronym> character.
13441344
</entry>
@@ -1359,7 +1359,7 @@
13591359
<parameter>src_encoding</parameter>. The
13601360
<parameter>string</parameter> must be valid in this encoding.
13611361
Conversions can be defined by <command>CREATE CONVERSION</command>.
1362-
Also there are some pre-defined conversions. See <xref
1362+
Also there are some predefined conversions. See <xref
13631363
linkend="conversion-names"> for available conversions.
13641364
</entry>
13651365
<entry><literal>convert('text_in_utf8', 'UTF8', 'LATIN1')</literal></entry>
@@ -6823,7 +6823,7 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
68236823
<para>
68246824
Notice that except for the two-argument form of <function>enum_range</>,
68256825
these functions disregard the specific value passed to them; they care
6826-
only about its declared datatype. Either NULL or a specific value of
6826+
only about its declared data type. Either null or a specific value of
68276827
the type can be passed, with the same result. It is more common to
68286828
apply these functions to a table column or function argument than to
68296829
a hardwired type name as suggested by the examples.
@@ -8381,7 +8381,7 @@ cursor_to_xml(cursor refcursor, count int, nulls boolean, tableforest boolean, t
83818381
...
83828382
]]></screen>
83838383

8384-
If no table name is avaible, that is, when mapping a query or a
8384+
If no table name is available, that is, when mapping a query or a
83858385
cursor, the string <literal>table</literal> is used in the first
83868386
format, <literal>row</literal> in the second format.
83878387
</para>

doc/src/sgml/high-availability.sgml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.28 2007/11/28 10:10:14 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.29 2007/11/28 15:42:31 petere Exp $ -->
22

33
<chapter id="high-availability">
44
<title>High Availability, Load Balancing, and Replication</title>
@@ -66,7 +66,7 @@
6666

6767
<para>
6868
Performance must be considered in any choice. There is usually a
69-
tradeoff between functionality and
69+
trade-off between functionality and
7070
performance. For example, a full synchronous solution over a slow
7171
network might cut performance by more than half, while an asynchronous
7272
one might have a minimal performance impact.
@@ -202,13 +202,13 @@ protocol to make nodes agree on a serializable transactional order.
202202
</varlistentry>
203203

204204
<varlistentry>
205-
<term>Asynchronous Multi-Master Replication</term>
205+
<term>Asynchronous Multimaster Replication</term>
206206
<listitem>
207207

208208
<para>
209209
For servers that are not regularly connected, like laptops or
210210
remote servers, keeping data consistent among servers is a
211-
challenge. Using asynchronous multi-master replication, each
211+
challenge. Using asynchronous multimaster replication, each
212212
server works independently, and periodically communicates with
213213
the other servers to identify conflicting transactions. The
214214
conflicts can be resolved by users or conflict resolution rules.
@@ -217,18 +217,18 @@ protocol to make nodes agree on a serializable transactional order.
217217
</varlistentry>
218218

219219
<varlistentry>
220-
<term>Synchronous Multi-Master Replication</term>
220+
<term>Synchronous Multimaster Replication</term>
221221
<listitem>
222222

223223
<para>
224-
In synchronous multi-master replication, each server can accept
224+
In synchronous multimaster replication, each server can accept
225225
write requests, and modified data is transmitted from the
226226
original server to every other server before each transaction
227227
commits. Heavy write activity can cause excessive locking,
228228
leading to poor performance. In fact, write performance is
229229
often worse than that of a single server. Read requests can
230230
be sent to any server. Some implementations use shared disk
231-
to reduce the communication overhead. Synchronous multi-master
231+
to reduce the communication overhead. Synchronous multimaster
232232
replication is best for mostly read workloads, though its big
233233
advantage is that any server can accept write requests &mdash;
234234
there is no need to partition workloads between master and
@@ -279,8 +279,8 @@ protocol to make nodes agree on a serializable transactional order.
279279
<entry>Warm Standby Using PITR</entry>
280280
<entry>Master-Slave Replication</entry>
281281
<entry>Statement-Based Replication Middleware</entry>
282-
<entry>Asynchronous Multi-Master Replication</entry>
283-
<entry>Synchronous Multi-Master Replication</entry>
282+
<entry>Asynchronous Multimaster Replication</entry>
283+
<entry>Synchronous Multimaster Replication</entry>
284284
</row>
285285
</thead>
286286

@@ -401,7 +401,7 @@ protocol to make nodes agree on a serializable transactional order.
401401
</varlistentry>
402402

403403
<varlistentry>
404-
<term>Multi-Server Parallel Query Execution</term>
404+
<term>Multiple-Server Parallel Query Execution</term>
405405
<listitem>
406406

407407
<para>

doc/src/sgml/install-win32.sgml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.41 2007/08/03 10:47:10 mha Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.42 2007/11/28 15:42:31 petere Exp $ -->
22

33
<chapter id="install-win32">
44
<title>Installation on <productname>Windows</productname></title>
@@ -82,7 +82,7 @@
8282
<term><productname>ActiveState Perl</productname></term>
8383
<listitem><para>
8484
ActiveState Perl is required to run the build generation scripts. MinGW
85-
or Cygwin perl will not work. It must also be present in the PATH.
85+
or Cygwin Perl will not work. It must also be present in the PATH.
8686
Binaries can be downloaded from
8787
<ulink url="http://www.activestate.com"></>.
8888
</para></listitem>
@@ -209,7 +209,7 @@
209209
</userinput>
210210
</screen>
211211
To change the default build configuration to debug, put the following
212-
in the buildenv.bat file:
212+
in the <filename>buildenv.bat</filename> file:
213213
<screen>
214214
<userinput>
215215
set CONFIG=Debug
@@ -261,8 +261,8 @@
261261
<para>
262262
To run the regression tests, make sure you have completed the build of all
263263
required parts first. Also, make sure that the DLLs required to load all
264-
parts of the system (such as the perl and python DLLs for the procedural
265-
languages) are present in the system PATH. If they are not, set it through
264+
parts of the system (such as the Perl and Python DLLs for the procedural
265+
languages) are present in the system path. If they are not, set it through
266266
the <filename>buildenv.bat</filename> file. To run the tests, run one of
267267
the following commands from the <filename>src\tools\msvc</filename>
268268
directory:
@@ -282,7 +282,7 @@
282282
</screen>
283283

284284
To change the schedule used (default is the parallel), append it to the
285-
commandline like:
285+
command line like:
286286
<screen>
287287
<userinput>
288288
vcregress check serial
@@ -321,7 +321,7 @@
321321
</varlistentry>
322322

323323
<varlistentry>
324-
<term>DocBook DSSL 1.79</term>
324+
<term>DocBook DSSSL 1.79</term>
325325
<listitem><para>
326326
Download from
327327
<ulink url="http://sourceforge.net/project/downloading.php?groupname=docbook&amp;filename=docbook-dsssl-1.79.zip"></>

doc/src/sgml/installation.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/installation.sgml,v 1.297 2007/11/05 17:43:20 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.298 2007/11/28 15:42:31 petere Exp $ -->
22

33
<chapter id="installation">
44
<title><![%standalone-include[<productname>PostgreSQL</>]]>
@@ -1308,7 +1308,7 @@ su - postgres
13081308
<term><envar>TCLSH</envar></term>
13091309
<listitem>
13101310
<para>
1311-
Full path to the Tcl interpreter. This wil be used to
1311+
Full path to the Tcl interpreter. This will be used to
13121312
determine the dependencies for building PL/Tcl.
13131313
</para>
13141314
</listitem>

doc/src/sgml/libpq.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/libpq.sgml,v 1.246 2007/09/26 08:45:50 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.247 2007/11/28 15:42:31 petere Exp $ -->
22

33
<chapter id="libpq">
44
<title><application>libpq</application> - C Library</title>
@@ -4976,7 +4976,7 @@ defaultNoticeProcessor(void *arg, const char *message)
49764976
used. (Therefore, put more-specific entries first when you are using
49774977
wildcards.) If an entry needs to contain <literal>:</literal> or
49784978
<literal>\</literal>, escape this character with <literal>\</literal>.
4979-
A host name of <literal>localhost</> matches both TCP (hostname
4979+
A host name of <literal>localhost</> matches both TCP (host name
49804980
<literal>localhost</>) and Unix domain socket (<literal>pghost</> empty
49814981
or the default socket directory) connections coming from the local
49824982
machine.

doc/src/sgml/maintenance.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/maintenance.sgml,v 1.84 2007/10/07 01:16:42 alvherre Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/maintenance.sgml,v 1.85 2007/11/28 15:42:31 petere Exp $ -->
22

33
<chapter id="maintenance">
44
<title>Routine Database Maintenance Tasks</title>
@@ -115,7 +115,7 @@
115115
<command>UPDATE</> or <command>DELETE</> of a row does not
116116
immediately remove the old version of the row.
117117
This approach is necessary to gain the benefits of multiversion
118-
concurrency control (see <xref linkend="mvcc">): the row version
118+
concurrency control (see <xref linkend="mvcc">): the row versions
119119
must not be deleted while it is still potentially visible to other
120120
transactions. But eventually, an outdated or deleted row version is no
121121
longer of interest to any transaction. The space it occupies must be
@@ -486,7 +486,7 @@ HINT: Stop the postmaster and use a standalone backend to VACUUM in "mydb".
486486

487487
<para>
488488
Beginning in <productname>PostgreSQL</productname> 8.3, autovacuum has a
489-
multi-process architecture: there is a daemon process, called the
489+
multiprocess architecture: There is a daemon process, called the
490490
<firstterm>autovacuum launcher</firstterm>, which is in charge of starting
491491
an <firstterm>autovacuum worker</firstterm> process on each database every
492492
<xref linkend="guc-autovacuum-naptime"> seconds. On each run, the worker

doc/src/sgml/monitoring.sgml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/monitoring.sgml,v 1.54 2007/09/25 20:03:37 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/monitoring.sgml,v 1.55 2007/11/28 15:42:31 petere Exp $ -->
22

33
<chapter id="monitoring">
44
<title>Monitoring Database Activity</title>
@@ -236,7 +236,7 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
236236
<entry>One row only, showing cluster-wide statistics from the
237237
background writer: number of scheduled checkpoints, requested
238238
checkpoints, buffers written by checkpoints and cleaning scans,
239-
and the number of times the bgwriter stopped a cleaning scan
239+
and the number of times the background writer stopped a cleaning scan
240240
because it had written too many buffers. Also includes
241241
statistics about the shared buffer pool, including buffers written
242242
by backends (that is, not by the background writer) and total buffers
@@ -777,7 +777,7 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
777777
<entry><literal><function>pg_stat_get_bgwriter_timed_checkpoints</function>()</literal></entry>
778778
<entry><type>bigint</type></entry>
779779
<entry>
780-
The number of times the bgwriter has started timed checkpoints
780+
The number of times the background writer has started timed checkpoints
781781
(because the <varname>checkpoint_timeout</varname> time has expired)
782782
</entry>
783783
</row>
@@ -786,7 +786,7 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
786786
<entry><literal><function>pg_stat_get_bgwriter_requested_checkpoints</function>()</literal></entry>
787787
<entry><type>bigint</type></entry>
788788
<entry>
789-
The number of times the bgwriter has started checkpoints based
789+
The number of times the background writer has started checkpoints based
790790
on requests from backends because the <varname>checkpoint_segments</varname>
791791
has been exceeded or because the <command>CHECKPOINT</command>
792792
command has been issued
@@ -797,15 +797,15 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
797797
<entry><literal><function>pg_stat_get_bgwriter_buf_written_checkpoints</function>()</literal></entry>
798798
<entry><type>bigint</type></entry>
799799
<entry>
800-
The number of buffers written by the bgwriter during checkpoints
800+
The number of buffers written by the background writer during checkpoints
801801
</entry>
802802
</row>
803803

804804
<row>
805805
<entry><literal><function>pg_stat_get_bgwriter_buf_written_clean</function>()</literal></entry>
806806
<entry><type>bigint</type></entry>
807807
<entry>
808-
The number of buffers written by the bgwriter for routine cleaning of
808+
The number of buffers written by the background writer for routine cleaning of
809809
dirty pages
810810
</entry>
811811
</row>
@@ -814,7 +814,7 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
814814
<entry><literal><function>pg_stat_get_bgwriter_maxwritten_clean</function>()</literal></entry>
815815
<entry><type>bigint</type></entry>
816816
<entry>
817-
The number of times the bgwriter has stopped its cleaning scan because
817+
The number of times the background writer has stopped its cleaning scan because
818818
it has written more buffers than specified in the
819819
<varname>bgwriter_lru_maxpages</varname> parameter
820820
</entry>
@@ -1180,7 +1180,7 @@ provider postgresql {
11801180

11811181
<para>
11821182
You should take care that the data types specified for the probe arguments
1183-
match the datatypes of the variables used in the <literal>PG_TRACE</>
1183+
match the data types of the variables used in the <literal>PG_TRACE</>
11841184
macro. This is not checked at compile time. You can check that your newly
11851185
added trace point is available by recompiling, then running the new binary,
11861186
and as root, executing a DTrace command such as:

0 commit comments

Comments
 (0)