aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-09-14 07:59:31 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-09-14 07:59:31 +0000
commit147c742aa2d1dece987f51f463127d370543894c (patch)
treebd9d6697a09ff5a1afcc9fdc1103bd5ddd5c2d0c /doc/src
parent058841301cc025eeeaf1f50eca3bf6422ed88ecd (diff)
downloadpostgresql-147c742aa2d1dece987f51f463127d370543894c.tar.gz
postgresql-147c742aa2d1dece987f51f463127d370543894c.zip
Add semicolon
Tatsuo Ishii
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/create_group.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_group.sgml b/doc/src/sgml/ref/create_group.sgml
index f88caa6405b..6556997022a 100644
--- a/doc/src/sgml/ref/create_group.sgml
+++ b/doc/src/sgml/ref/create_group.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_group.sgml,v 1.4 2001/09/03 12:57:49 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_group.sgml,v 1.5 2001/09/14 07:59:31 ishii Exp $
Postgres documentation
-->
@@ -127,14 +127,14 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
<para>
Create an empty group:
<programlisting>
-CREATE GROUP staff
+CREATE GROUP staff;
</programlisting>
</para>
<para>
Create a group with members:
<programlisting>
-CREATE GROUP marketing WITH USER jonathan, david
+CREATE GROUP marketing WITH USER jonathan, david;
</programlisting>
</para>
</refsect1>