Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d07d5d8

Browse files
committed
Cleanup
1 parent 2aeb2c6 commit d07d5d8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/src/sgml/ref/create_rule.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.16 2000/05/20 11:38:25 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_rule.sgml,v 1.17 2000/07/21 04:22:54 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -302,7 +302,7 @@ CREATE RULE example_3 AS
302302
</programlisting>
303303
</para>
304304
<para>
305-
Create a view of the employees working in the toy department.
305+
Create a view of the employees working in the toy department:
306306
<programlisting>
307307
CREATE toyemp(name = char16, salary = int4);
308308

@@ -315,7 +315,7 @@ CREATE RULE example_4 AS
315315
</programlisting>
316316
</para>
317317
<para>
318-
All new employees must make 5,000 or less
318+
All new employees must make 5,000 or less:
319319
<programlisting>
320320
CREATE RULE example_5 AS
321321
ON INERT TO emp WHERE new.salary > 5000

doc/src/sgml/ref/create_sequence.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_sequence.sgml,v 1.12 2000/05/08 16:19:56 thomas Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_sequence.sgml,v 1.13 2000/07/21 04:25:05 momjian Exp $
33
Postgres documentation
44
-->
55

@@ -311,7 +311,7 @@ SELECT last_value FROM <replaceable>seqname</replaceable>;
311311
CREATE SEQUENCE serial START 101;
312312
</programlisting>
313313
<para>
314-
Select the next number from this sequence
314+
Select the next number from this sequence:
315315
<programlisting>
316316
SELECT NEXTVAL ('serial');
317317

0 commit comments

Comments
 (0)