Skip to content

Commit c281847

Browse files
committed
More doc cleanups
1 parent c62e961 commit c281847

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

doc/src/sgml/ref/create_operator.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.13 2000/03/27 17:14:42 thomas Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_operator.sgml,v 1.14 2000/07/21 17:58:49 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -393,7 +393,7 @@ MYBOXES.description === box '((0,0),(1,1))'
393393
Usage
394394
</title>
395395
<para>The following command defines a new operator,
396-
area-equality, for the BOX data type.
396+
area-equality, for the BOX data type:
397397
</para>
398398
<programlisting>
399399
CREATE OPERATOR === (

doc/src/sgml/ref/postgres-ref.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/postgres-ref.sgml,v 1.11 2000/07/21 03:14:33 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/postgres-ref.sgml,v 1.12 2000/07/21 17:58:49 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -126,7 +126,7 @@ postgres [ -B <replaceable class="parameter">nBuffers</replaceable> ] [ -C ] [ -
126126
<para>
127127
Override restrictions, so system table structures can be modified.
128128
These tables are typically those with a leading
129-
"<literal>pg_</literal>" in the table name.
129+
<literal>pg_</literal> in the table name.
130130
</para>
131131
</listitem>
132132
</varlistentry>
@@ -136,9 +136,9 @@ postgres [ -B <replaceable class="parameter">nBuffers</replaceable> ] [ -C ] [ -
136136
<listitem>
137137
<para>
138138
Ignore system indexes to scan/update system
139-
tuples. <command>REINDEX</command> for system tables/indexes
139+
tuples. The <command>REINDEX</command> for system tables/indexes
140140
requires this option. System tables are
141-
typically those with a leading "<literal>pg_</literal>" in the
141+
typically those with a leading <literal>pg_</literal> in the
142142
table name.
143143
</para>
144144
</listitem>

doc/src/sgml/ref/psql-ref.sgml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.33 2000/05/12 00:54:52 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.34 2000/07/21 17:58:49 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -491,8 +491,8 @@ testdb=>
491491
<para>
492492
The new query buffer is then re-parsed according to the normal rules of
493493
<application>psql</application>, where the whole buffer is treated as
494-
a single line. (Thus you cannot make <quote>scripts</quote> this way,
495-
use <command>\i</command> for that.) This means also that
494+
a single line. (Thus you cannot make scripts this way.
495+
Use <command>\i</command> for that.) This means also that
496496
if the query ends with (or rather contains) a semicolon, it is immediately
497497
executed. In other cases it will merely wait in the query buffer.
498498
</para>
@@ -551,8 +551,8 @@ Tue Oct 26 21:40:57 CEST 1999
551551

552552
<listitem>
553553
<para>
554-
Sets the field separator for unaligned query output. The default is <quote><literal>|</literal></quote>
555-
(a <quote>pipe</quote> symbol). See also <command>\pset</command> for a generic way
554+
Sets the field separator for unaligned query output. The default is
555+
pipe (<literal>|</literal>). See also <command>\pset</command> for a generic way
556556
of setting output options.
557557
</para>
558558
</listitem>
@@ -1533,7 +1533,7 @@ Access permissions for database "test"
15331533
<para>
15341534
As of version 7.0, <application>psql</application> automatically issues a
15351535
password prompt whenever the backend requests password authentication.
1536-
Because this is currently based on a <quote>hack</quote>, the automatic
1536+
Because this is currently based on a hack, the automatic
15371537
recognition might mysteriously fail, hence this option to force a prompt.
15381538
If no password prompt is issued and the backend requires password authentication
15391539
the connection attempt will fail.
@@ -2148,7 +2148,7 @@ $ ./configure --with-includes=/opt/gnu/include --with-libs=/opt/gnu/lib ...
21482148

21492149
<para>
21502150
The first example shows how to spread a query over several lines of input.
2151-
Notice the changing prompt.
2151+
Notice the changing prompt:
21522152
<programlisting>
21532153
testdb=> <userinput>CREATE TABLE my_table (</userinput>
21542154
testdb(> <userinput> first integer not null default 0,</userinput>
@@ -2186,7 +2186,7 @@ peter@localhost testdb=> SELECT * FROM my_table;
21862186
</programlisting>
21872187
Notice how the int4 colums in right aligned while the text column in left aligned.
21882188
You can make this table look differently by using the <command>\pset</command>
2189-
command.
2189+
command:
21902190
<programlisting>
21912191
peter@localhost testdb=> <userinput>\pset border 2</userinput>
21922192
Border style is 2.

0 commit comments

Comments
 (0)