diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2001-09-12 01:55:25 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2001-09-12 01:55:25 +0000 |
commit | 2d12bc1ea13c7814f0518cdb4bf36506d558a66a (patch) | |
tree | 056ecf8cf5ef07043fabd81231071f3d121699f9 | |
parent | 7dc4a45ae7cf3f3ec5f9e54c5c19efacc8e7abdc (diff) | |
download | postgresql-2d12bc1ea13c7814f0518cdb4bf36506d558a66a.tar.gz postgresql-2d12bc1ea13c7814f0518cdb4bf36506d558a66a.zip |
Fix typo (add ;)
-rw-r--r-- | doc/src/sgml/ref/alter_group.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/alter_group.sgml b/doc/src/sgml/ref/alter_group.sgml index 415049445fd..c2072f8f153 100644 --- a/doc/src/sgml/ref/alter_group.sgml +++ b/doc/src/sgml/ref/alter_group.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_group.sgml,v 1.5 2001/09/03 12:57:49 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_group.sgml,v 1.6 2001/09/12 01:55:25 ishii Exp $ Postgres documentation --> @@ -111,13 +111,13 @@ ALTER GROUP <replaceable class="PARAMETER">name</replaceable> DROP USER <replace Add users to a group: <programlisting> -ALTER GROUP staff ADD USER karl, john +ALTER GROUP staff ADD USER karl, john; </programlisting> Remove a user from a group: <programlisting> -ALTER GROUP workers DROP USER beth +ALTER GROUP workers DROP USER beth; </programlisting> </para> |