@@ -162,7 +162,7 @@ GRANT UPDATE ON accounts TO joe;
162162GRANT SELECT ON accounts TO GROUP staff;
163163</programlisting>
164164 The special <quote>user</quote> name <literal>PUBLIC</literal> can
165- be used to grant a privilege to every user on the system.Using
165+ be used to grant a privilege to every user on the system.Writing
166166 <literal>ALL</literal> in place of a specific privilege specifies that all
167167 privileges will be granted.
168168 </para>
@@ -173,8 +173,12 @@ GRANT SELECT ON accounts TO GROUP staff;
173173<programlisting>
174174REVOKE ALL ON accounts FROM PUBLIC;
175175</programlisting>
176- The special privileges of the table owner are always implicit
177- and cannot be granted or revoked.
176+ The special privileges of the table owner (i.e., the right to do
177+ <command>DROP</>, <command>GRANT</>, <command>REVOKE</>, etc)
178+ are always implicit in being the owner,
179+ and cannot be granted or revoked. But the table owner can choose
180+ to revoke his own ordinary privileges, for example to make a
181+ table read-only for himself as well as others.
178182 </para>
179183 </sect1>
180184