diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-05 06:14:45 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-05 06:14:45 +0000 |
commit | 7bf7b0bd7537f9ffd15c8f70cd2689acfa506cd7 (patch) | |
tree | 59f36a657cdc99505d86b67e15107e83f8258640 | |
parent | ed5eb09cce2707d52670fc717aee482aeeb2c08d (diff) | |
download | postgresql-7bf7b0bd7537f9ffd15c8f70cd2689acfa506cd7.tar.gz postgresql-7bf7b0bd7537f9ffd15c8f70cd2689acfa506cd7.zip |
This trivial patch fixes a typo and improves the phrasing of a sentence
in the docs.
Neil Conway
-rw-r--r-- | doc/src/sgml/datatype.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index 68fdb9cbe88..4738954ab79 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.84 2002/01/20 22:19:55 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.85 2002/03/05 06:14:45 momjian Exp $ --> <chapter id="datatype"> @@ -688,7 +688,7 @@ CREATE TABLE <replaceable class="parameter">tablename</replaceable> ( names <type>bigserial</type> and <type>serial8</type> work just the same way, except that they create a <type>bigint</type> column. <type>bigserial</type> should be used if you anticipate - use of more than 2<superscript>31</> identifiers over the lifetime of the table. + the use of more than 2<superscript>31</> identifiers over the lifetime of the table. </para> <para> @@ -704,7 +704,7 @@ CREATE TABLE <replaceable class="parameter">tablename</replaceable> (<replaceabl The sequence will remain in the database until explicitly dropped using <command>DROP SEQUENCE</command>. (This annoyance will probably be - changed in some future release.) + fixed in some future release.) </para> </sect2> </sect1> |