Skip to content

Commit 75b4ee1

Browse files
author
Neil Conway
committed
Fix some typos in the documentation. Patch from Brian Gough. Backport
the relevant fixes to 8.2 as well.
1 parent 40f7b9e commit 75b4ee1

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

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.198 2007/04/21 17:26:17 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.199 2007/05/03 15:05:56 neilc Exp $ -->
22

33
<chapter id="datatype">
44
<title id="datatype-title">Data Types</title>
@@ -3376,7 +3376,7 @@ SET xmloption TO { DOCUMENT | CONTENT };
33763376

33773377
<para>
33783378
When using the binary mode to pass query parameters to the server
3379-
and query results back the the client, no character set conversion
3379+
and query results back to the client, no character set conversion
33803380
is performed, so the situation is different. In this case, an
33813381
encoding declaration in the XML data will be observed, and if it
33823382
is absent, the data will be assumed to be in UTF-8 (as required by

doc/src/sgml/ddl.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/ddl.sgml,v 1.73 2007/02/01 00:28:16 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.74 2007/05/03 15:05:56 neilc Exp $ -->
22

33
<chapter id="ddl">
44
<title>Data Definition</title>
@@ -2233,7 +2233,7 @@ VALUES ('New York', NULL, NULL, 'NY');
22332233

22342234
<listitem>
22352235
<para>
2236-
When queries or updates access a large percentage of a a single
2236+
When queries or updates access a large percentage of a single
22372237
partition, performance can be improved by taking advantage
22382238
of sequential scan of that partition instead of using an
22392239
index and random access reads scattered across the whole table.
@@ -2556,7 +2556,7 @@ DO INSTEAD
25562556
</programlisting>
25572557

25582558
Note that the <literal>WHERE</literal> clause in each rule
2559-
exactly matches the the <literal>CHECK</literal>
2559+
exactly matches the <literal>CHECK</literal>
25602560
constraint for its partition.
25612561
</para>
25622562
</listitem>

doc/src/sgml/plperl.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/plperl.sgml,v 2.64 2007/02/16 03:50:29 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/plperl.sgml,v 2.65 2007/05/03 15:05:56 neilc Exp $ -->
22

33
<chapter id="plperl">
44
<title>PL/Perl - Perl Procedural Language</title>
@@ -20,7 +20,7 @@
2020
<para> The usual advantage to using PL/Perl is that this allows use,
2121
within stored functions, of the manyfold <quote>string
2222
munging</quote> operators and functions available for Perl. Parsing
23-
complex strings might be be easier using Perl than it is with the
23+
complex strings might be easier using Perl than it is with the
2424
string functions and control structures provided in PL/pgSQL.</para>
2525

2626
<para>
@@ -619,7 +619,7 @@ CREATE FUNCTION badfunc() RETURNS integer AS $$
619619
$$ LANGUAGE plperl;
620620
</programlisting>
621621
The creation of this function will fail as its use of a forbidden
622-
operation will be be caught by the validator.
622+
operation will be caught by the validator.
623623
</para>
624624

625625
<para>

doc/src/sgml/spi.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/spi.sgml,v 1.56 2007/04/16 01:14:55 tgl Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/spi.sgml,v 1.57 2007/05/03 15:05:56 neilc Exp $ -->
22

33
<chapter id="spi">
44
<title>Server Programming Interface</title>
@@ -2233,7 +2233,7 @@ char * SPI_getvalue(HeapTuple <parameter>row</parameter>, TupleDesc <parameter>r
22332233
Column value, or <symbol>NULL</symbol> if the column is null,
22342234
<parameter>colnumber</parameter> is out of range
22352235
(<varname>SPI_result</varname> is set to
2236-
<symbol>SPI_ERROR_NOATTRIBUTE</symbol>), or no no output function
2236+
<symbol>SPI_ERROR_NOATTRIBUTE</symbol>), or no output function is
22372237
available (<varname>SPI_result</varname> is set to
22382238
<symbol>SPI_ERROR_NOOUTFUNC</symbol>).
22392239
</para>

0 commit comments

Comments
 (0)