diff --git a/doc/src/sgml/ref/alter_sequence.sgml b/doc/src/sgml/ref/alter_sequence.sgml
index 3a04d07..190c8d6 100644
--- a/doc/src/sgml/ref/alter_sequence.sgml
+++ b/doc/src/sgml/ref/alter_sequence.sgml
@@ -89,7 +89,7 @@ ALTER SEQUENCE [ IF EXISTS ] name S
The optional
clause AS data_type
changes the data type of the sequence. Valid types are
- are smallint, integer,
+ smallint, integer,
and bigint.
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml
index f1448e7..2af8c8d 100644
--- a/doc/src/sgml/ref/create_sequence.sgml
+++ b/doc/src/sgml/ref/create_sequence.sgml
@@ -119,7 +119,7 @@ SELECT * FROM name;
The optional
clause AS data_type
specifies the data type of the sequence. Valid types are
- are smallint, integer,
+ smallint, integer,
and bigint. bigint is the
default. The data type determines the default minimum and maximum
values of the sequence.