aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-08-17 04:46:59 +0000
committerBruce Momjian <bruce@momjian.us>2003-08-17 04:46:59 +0000
commit41477b9a832e1e8fc11b823b11f075557622a579 (patch)
tree0c9e3699913246b1ce0de5e017ba50754d64dac1
parente7f266e5fed574265ed6d607f11918b513179447 (diff)
downloadpostgresql-41477b9a832e1e8fc11b823b11f075557622a579.tar.gz
postgresql-41477b9a832e1e8fc11b823b11f075557622a579.zip
This patch makes two minor fixes to the docs: (1) fixes a
spelling mistake in the PREPARE ref page (2) Makes some English more consistent, in the ref pages for some of the client apps (3) Adds a link to the libpq docs in the vacuumdb ref page. Neil Conway
-rw-r--r--doc/src/sgml/ref/clusterdb.sgml11
-rw-r--r--doc/src/sgml/ref/createuser.sgml4
-rw-r--r--doc/src/sgml/ref/dropuser.sgml4
-rw-r--r--doc/src/sgml/ref/prepare.sgml4
-rw-r--r--doc/src/sgml/ref/vacuumdb.sgml13
5 files changed, 18 insertions, 18 deletions
diff --git a/doc/src/sgml/ref/clusterdb.sgml b/doc/src/sgml/ref/clusterdb.sgml
index eb814261876..4e41136168c 100644
--- a/doc/src/sgml/ref/clusterdb.sgml
+++ b/doc/src/sgml/ref/clusterdb.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/clusterdb.sgml,v 1.10 2003/06/18 12:19:11 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/clusterdb.sgml,v 1.11 2003/08/17 04:46:59 momjian Exp $
PostgreSQL documentation
-->
@@ -129,10 +129,9 @@ PostgreSQL documentation
<term><option>--host <replaceable class="parameter">host</replaceable></></term>
<listitem>
<para>
- Specifies the host name of the machine on which the
- server
- is running. If the value begins with a slash, it is used
- as the directory for the Unix domain socket.
+ Specifies the host name of the machine on which the server is
+ running. If the value begins with a slash, it is used as the
+ directory for the Unix domain socket.
</para>
</listitem>
</varlistentry>
@@ -182,7 +181,7 @@ PostgreSQL documentation
<term><computeroutput>CLUSTER</computeroutput></term>
<listitem>
<para>
- Everything went well.
+ The database was successfully clustered.
</para>
</listitem>
</varlistentry>
diff --git a/doc/src/sgml/ref/createuser.sgml b/doc/src/sgml/ref/createuser.sgml
index ba882776878..6f58117be1c 100644
--- a/doc/src/sgml/ref/createuser.sgml
+++ b/doc/src/sgml/ref/createuser.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/createuser.sgml,v 1.34 2003/06/06 15:31:46 momjian Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/createuser.sgml,v 1.35 2003/08/17 04:46:59 momjian Exp $
PostgreSQL documentation
-->
@@ -276,7 +276,7 @@ PostgreSQL documentation
<term><computeroutput>CREATE USER</computeroutput></term>
<listitem>
<para>
- All is well.
+ The user was successfully created.
</para>
</listitem>
</varlistentry>
diff --git a/doc/src/sgml/ref/dropuser.sgml b/doc/src/sgml/ref/dropuser.sgml
index 24e8d8ecf45..c199624d346 100644
--- a/doc/src/sgml/ref/dropuser.sgml
+++ b/doc/src/sgml/ref/dropuser.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/dropuser.sgml,v 1.26 2003/06/18 12:19:11 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/dropuser.sgml,v 1.27 2003/08/17 04:46:59 momjian Exp $
PostgreSQL documentation
-->
@@ -180,7 +180,7 @@ PostgreSQL documentation
<term><computeroutput>DROP USER</computeroutput></term>
<listitem>
<para>
- All is well.
+ The user was successfully removed.
</para>
</listitem>
</varlistentry>
diff --git a/doc/src/sgml/ref/prepare.sgml b/doc/src/sgml/ref/prepare.sgml
index 9f58b7a5ce8..590772ee2a1 100644
--- a/doc/src/sgml/ref/prepare.sgml
+++ b/doc/src/sgml/ref/prepare.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/prepare.sgml,v 1.4 2003/04/26 23:56:51 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/prepare.sgml,v 1.5 2003/08/17 04:46:59 momjian Exp $
PostgreSQL documentation
-->
@@ -130,7 +130,7 @@ PREPARE <replaceable class="PARAMETER">plan_name</replaceable> [ (<replaceable c
In some situations, the query plan produced by for a prepared
statement may be inferior to the plan produced if the statement
were submitted and executed normally. This is because when the
- statement is planned and the planer attempts to determine the
+ statement is planned and the planner attempts to determine the
optimal query plan, the actual values of any parameters specified
in the statement are
unavailable. <productname>PostgreSQL</productname> collects
diff --git a/doc/src/sgml/ref/vacuumdb.sgml b/doc/src/sgml/ref/vacuumdb.sgml
index e04cf16c3fe..490d72b5a2f 100644
--- a/doc/src/sgml/ref/vacuumdb.sgml
+++ b/doc/src/sgml/ref/vacuumdb.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuumdb.sgml,v 1.29 2003/06/18 12:19:11 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuumdb.sgml,v 1.30 2003/08/17 04:46:59 momjian Exp $
PostgreSQL documentation
-->
@@ -59,10 +59,11 @@ PostgreSQL documentation
<para>
- <application>vacuumdb</application> might need to connect several
- times to the <productname>PostgreSQL</productname> server, asking for
- a password each time. It is convenient to have a
- <filename>$HOME/.pgpass</> file in such cases.
+ <application>vacuumdb</application> might need to connect several
+ times to the <productname>PostgreSQL</productname> server, asking
+ for a password each time. It is convenient to have a
+ <filename>$HOME/.pgpass</> file in such cases. See <xref
+ linkend="libpq-pgpass"> for more information.
</para>
</refsect1>
@@ -234,7 +235,7 @@ PostgreSQL documentation
<term><computeroutput>VACUUM</computeroutput></term>
<listitem>
<para>
- Everything went well.
+ The database was successfully vacuumed.
</para>
</listitem>
</varlistentry>