Commit
620ac285483 accidentally introduced a typo in the privilege
inheritance documentation
A role inherits the privileges of roles it is a member of, by default.
However, to create a role which does not inherit privileges by
default, use CREATE ROLE name
- NOINHERIT. Alternatively, inheritance can be overriden
+ NOINHERIT. Alternatively, inheritance can be overridden
for individual grants by using WITH INHERIT TRUE
or WITH INHERIT FALSE.