diff --git a/doc/src/sgml/user-manag.sgml b/doc/src/sgml/user-manag.sgml
index 61f30a99d37..cdfeaea31e7 100644
--- a/doc/src/sgml/user-manag.sgml
+++ b/doc/src/sgml/user-manag.sgml
@@ -142,15 +142,17 @@ ALTER GROUP name DROP USER uname1
- Currently, there are five different privileges: select (read),
- insert (append), update (write), delete, and
- RULE, the permission to create a rewrite rule on
- a table. The right to modify or destroy an object is always the
- privilege of the owner only. To assign privileges, the
- GRANT command is used. So, if
+ There are several different privileges: SELECT
+ (read), INSERT (append), UPDATE
+ (write), DELETE, RULE,
+ REFERENCES (foreign key), and
+ TRIGGER. (See the GRANT manual
+ page for more detailed information.) The right to modify or destroy
+ an object is always the privilege of the owner only. To assign
+ privileges, the GRANT command is used. So, if
joe is an existing user, and
- accounts is an existing table, write access can
- be granted with
+ accounts is an existing table, write access can be
+ granted with
GRANT UPDATE ON accounts TO joe;