Skip to content

Commit b8174bc

Browse files
committed
Spelling fixes
1 parent 4aa14fe commit b8174bc

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

doc/src/sgml/config.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/config.sgml,v 1.294.2.1 2010/07/16 11:21:46 heikki Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.294.2.2 2010/07/27 19:01:04 petere Exp $ -->
22

33
<chapter Id="runtime-config">
44
<title>Server Configuration</title>
@@ -2265,7 +2265,7 @@ SET ENABLE_SEQSCAN TO OFF;
22652265
<para>
22662266
Sets the planner's estimate of the cost of a disk page fetch
22672267
that is part of a series of sequential fetches. The default is 1.0.
2268-
This value can be overriden for a particular tablespace by setting
2268+
This value can be overridden for a particular tablespace by setting
22692269
the tablespace parameter of the same name
22702270
(see <xref linkend="sql-altertablespace">).
22712271
</para>
@@ -2281,7 +2281,7 @@ SET ENABLE_SEQSCAN TO OFF;
22812281
<para>
22822282
Sets the planner's estimate of the cost of a
22832283
non-sequentially-fetched disk page. The default is 4.0.
2284-
This value can be overriden for a particular tablespace by setting
2284+
This value can be overridden for a particular tablespace by setting
22852285
the tablespace parameter of the same name
22862286
(see <xref linkend="sql-altertablespace">).
22872287
</para>

doc/src/sgml/datatype.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/datatype.sgml,v 1.250.2.2 2010/07/24 16:46:43 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.250.2.3 2010/07/27 19:01:04 petere Exp $ -->
22

33
<chapter id="datatype">
44
<title>Data Types</title>
@@ -1248,7 +1248,7 @@ SELECT E'\\xDEADBEEF';
12481248
represented as an ASCII character into special escape sequences.
12491249
If, from the point of view of the application, representing bytes
12501250
as characters makes sense, then this representation can be
1251-
convenient. But in practice it is usually confusing becauses it
1251+
convenient. But in practice it is usually confusing because it
12521252
fuzzes up the distinction between binary strings and character
12531253
strings, and also the particular escape mechanism that was chosen is
12541254
somewhat unwieldy. So this format should probably be avoided

doc/src/sgml/install-win32.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/install-win32.sgml,v 1.57 2010/03/17 17:12:31 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.57.4.1 2010/07/27 19:01:04 petere Exp $ -->
22

33
<chapter id="install-win32">
44
<title>Installation from Source Code on <productname>Windows</productname></title>
@@ -19,7 +19,7 @@
1919
<para>
2020
There are several different ways of building PostgreSQL on
2121
<productname>Windows</productname>. The simplest way to build with
22-
Microsoft tools is to intall a modern version of the
22+
Microsoft tools is to install a modern version of the
2323
<productname>Microsoft Platform SDK</productname> and use use the included
2424
compiler. It is also possible to build with the full
2525
<productname>Microsoft Visual C++ 2005 or 2008</productname>. In some cases

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.348 2010/07/05 18:54:37 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/installation.sgml,v 1.348.2.1 2010/07/27 19:01:04 petere Exp $ -->
22

33
<chapter id="installation">
44
<title><![%standalone-include[<productname>PostgreSQL</>]]>
@@ -2327,7 +2327,7 @@ hosts=local4,bind4
23272327
-bash-3.00$ createlang plperl template1
23282328
createlang: language installation failed: ERROR: could not load library "/opt/dbs/pgsql748/lib/plperl.so": A memory address is not in the address space for the process.
23292329
</screen>
2330-
Running as a non-owner in the group posessing the PostgreSQL
2330+
Running as a non-owner in the group possessing the PostgreSQL
23312331
installation:
23322332
<screen>
23332333
-bash-3.00$ createlang plperl template1

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.313.2.1 2010/07/14 17:09:54 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.313.2.2 2010/07/27 19:01:04 petere Exp $ -->
22

33
<chapter id="libpq">
44
<title><application>libpq</application> - C Library</title>
@@ -1744,7 +1744,7 @@ PGresult *PQexecParams(PGconn *conn,
17441744
to be text strings.
17451745
</para>
17461746
<para>
1747-
Values passed in binary format require knowlege of
1747+
Values passed in binary format require knowledge of
17481748
the internal representation expected by the backend.
17491749
For example, integers must be passed in network byte
17501750
order. Passing <type>numeric</> values requires

doc/src/sgml/release-9.0.sgml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.39 2010/07/08 22:26:14 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.39.2.1 2010/07/27 19:01:04 petere Exp $ -->
22

33
<sect1 id="release-9-0">
44
<title>Release 9.0</title>
@@ -534,7 +534,7 @@
534534

535535
<listitem>
536536
<para>
537-
Use the same random seed everytime GEQO plans a query (Andres
537+
Use the same random seed every time GEQO plans a query (Andres
538538
Freund)
539539
</para>
540540

@@ -686,7 +686,7 @@
686686
<title>Monitoring</title>
687687
<para>
688688
With increased use of PostgreSQL in high-end production systems,
689-
users need increased monitoring. PostgresSQL 9.0 continues to add
689+
users need increased monitoring. PostgreSQL 9.0 continues to add
690690
more ways to monitor PostgreSQL applications.
691691
</para>
692692

@@ -745,7 +745,7 @@
745745
Add <link
746746
linkend="monitoring-stats-funcs-table"><function>pg_stat_reset_shared('bgwriter')</></link>
747747
to reset the cluster-wide shared statistics of the
748-
bgwriter (Greg Smith)
748+
background writer (Greg Smith)
749749
</para>
750750
</listitem>
751751

@@ -754,7 +754,7 @@
754754
Add <link
755755
linkend="monitoring-stats-funcs-table"><function>pg_stat_reset_single_table_counters()</></link>
756756
and <function>pg_stat_reset_single_function_counters()</>
757-
to allow the reseting of statistics counters for individual
757+
to allow the resetting of statistics counters for individual
758758
tables and indexes (Magnus Hagander)
759759
</para>
760760
</listitem>

doc/src/sgml/wal.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/wal.sgml,v 1.68.2.2 2010/07/16 11:36:10 heikki Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.68.2.3 2010/07/27 19:01:04 petere Exp $ -->
22

33
<chapter id="wal">
44
<title>Reliability and the Write-Ahead Log</title>
@@ -91,7 +91,7 @@
9191
<para>
9292
Many file systems that use write barriers (e.g. <acronym>ZFS</>,
9393
<acronym>ext4</>) internally use <command>FLUSH CACHE EXT</> or
94-
<command>SYNCHRONIZE CACHE</> commands to flush data to the platers on
94+
<command>SYNCHRONIZE CACHE</> commands to flush data to the platters on
9595
write-back-enabled drives. Unfortunately, such write barrier file
9696
systems behave suboptimally when combined with battery-backed unit
9797
(<acronym>BBU</>) disk controllers. In such setups, the synchronize

doc/src/sgml/xml2.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/xml2.sgml,v 1.7 2009/05/18 11:08:24 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/xml2.sgml,v 1.7.14.1 2010/07/27 19:01:04 petere Exp $ -->
22

33
<sect1 id="xml2">
44
<title>xml2</title>
@@ -386,7 +386,7 @@ WHERE t.author_id = p.person_id;
386386
</synopsis>
387387

388388
<para>
389-
This function appplies the XSL stylesheet to the document and returns
389+
This function applies the XSL stylesheet to the document and returns
390390
the transformed result. The paramlist is a list of parameter
391391
assignments to be used in the transformation, specified in the form
392392
<literal>a=1,b=2</>. Note that the

0 commit comments

Comments
 (0)