aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2012-08-06 16:12:17 -0400
committerRobert Haas <rhaas@postgresql.org>2012-08-06 16:12:17 -0400
commitb112df8421abce1c61bcfd385490050604a6d4e3 (patch)
tree8d7dd0f1bdc51f11fcb3c0cb4673b8e697edd3f0 /doc/src
parent95282d3522f4a35fc0aa6b77110bae1e0d8d207f (diff)
downloadpostgresql-b112df8421abce1c61bcfd385490050604a6d4e3.tar.gz
postgresql-b112df8421abce1c61bcfd385490050604a6d4e3.zip
Typo fixes for previous commit.
Noted by Thom Brown.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/datatype.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml
index aed2d96bedc..e64e4ea64a4 100644
--- a/doc/src/sgml/datatype.sgml
+++ b/doc/src/sgml/datatype.sgml
@@ -832,9 +832,9 @@ ALTER SEQUENCE <replaceable class="parameter">tablename</replaceable>_<replaceab
<note>
<para>
Because <type>smallserial</type>, <type>serial</type> and
- <type>bigserial</type> are implemented usings sequences, there may
+ <type>bigserial</type> are implemented using sequences, there may
be "holes" or gaps in the sequence of values which appears in the
- column, even if no rows are ever deleted. This is a value allocated
+ column, even if no rows are ever deleted. A value allocated
from the sequence is still "used up" even if a row containing that
value is never successfully inserted into the table column. This
may happen, for example, if the inserting transaction rolls back.