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

Commit d33cfbd

Browse files
committed
Spelling fixes
1 parent e0226a9 commit d33cfbd

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

doc/src/sgml/config.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.300 2010/07/24 12:16:20 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.301 2010/07/27 19:01:16 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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.253 2010/07/24 16:46:57 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.254 2010/07/27 19:01:16 petere Exp $ -->
22

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

doc/src/sgml/install-win32.sgml

+2-2
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.58 2010/07/27 19:01:16 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

+2-2
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.349 2010/07/27 19:01:16 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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.315 2010/07/18 11:37:25 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.316 2010/07/27 19:01:16 petere Exp $ -->
22

33
<chapter id="libpq">
44
<title><application>libpq</application> - C Library</title>
@@ -1766,7 +1766,7 @@ PGresult *PQexecParams(PGconn *conn,
17661766
to be text strings.
17671767
</para>
17681768
<para>
1769-
Values passed in binary format require knowlege of
1769+
Values passed in binary format require knowledge of
17701770
the internal representation expected by the backend.
17711771
For example, integers must be passed in network byte
17721772
order. Passing <type>numeric</> values requires

doc/src/sgml/release-9.0.sgml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.42 2010/07/12 18:30:36 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/release-9.0.sgml,v 2.43 2010/07/27 19:01:16 petere Exp $ -->
22

33
<sect1 id="release-9-0">
44
<title>Release 9.0</title>
@@ -685,7 +685,7 @@
685685
<title>Monitoring</title>
686686
<para>
687687
With increased use of PostgreSQL in high-end production systems,
688-
users need increased monitoring. PostgresSQL 9.0 continues to add
688+
users need increased monitoring. PostgreSQL 9.0 continues to add
689689
more ways to monitor PostgreSQL applications.
690690
</para>
691691

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

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

doc/src/sgml/wal.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.70 2010/07/16 11:35:40 heikki Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.71 2010/07/27 19:01:16 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

+2-2
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.8 2010/07/27 19:01:16 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)