diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml
index 3af65accea8..a39cb8fc0f4 100644
--- a/doc/src/sgml/ref/alter_table.sgml
+++ b/doc/src/sgml/ref/alter_table.sgml
@@ -906,9 +906,8 @@ ALTER TABLE [ IF EXISTS ] name
The TRIGGER>, CLUSTER>, OWNER>,
and TABLESPACE> actions never recurse to descendant tables;
that is, they always act as though ONLY> were specified.
- Adding a constraint can recurse only for CHECK> constraints,
- and is required to do so for such constraints, except those that are
- explicitely marked NO INHERIT>.
+ Adding a constraint recurses only for CHECK> constraints
+ that are not marked NO INHERIT>.
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index 4da6eea7589..a52bfad2f3d 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -438,7 +438,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
A constraint marked with NO INHERIT> will not propagate to
- children tables.
+ child tables.