diff --git a/doc/src/sgml/ref/create_rule.sgml b/doc/src/sgml/ref/create_rule.sgml
index 8938fc6e37..e8be382304 100644
--- a/doc/src/sgml/ref/create_rule.sgml
+++ b/doc/src/sgml/ref/create_rule.sgml
@@ -1,5 +1,5 @@
@@ -302,7 +302,7 @@ CREATE RULE example_3 AS
- Create a view of the employees working in the toy department.
+ Create a view of the employees working in the toy department:
CREATE toyemp(name = char16, salary = int4);
@@ -315,7 +315,7 @@ CREATE RULE example_4 AS
- All new employees must make 5,000 or less
+ All new employees must make 5,000 or less:
CREATE RULE example_5 AS
ON INERT TO emp WHERE new.salary > 5000
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml
index b72a213e7e..00e9000948 100644
--- a/doc/src/sgml/ref/create_sequence.sgml
+++ b/doc/src/sgml/ref/create_sequence.sgml
@@ -1,5 +1,5 @@
@@ -311,7 +311,7 @@ SELECT last_value FROM seqname;
CREATE SEQUENCE serial START 101;
- Select the next number from this sequence
+ Select the next number from this sequence:
SELECT NEXTVAL ('serial');