doc: Fix typo in user inheritance documentation

Commit 620ac28548 accidentally introduced a typo in the privilege
inheritance documentation
This commit is contained in:
Daniel Gustafsson 2022-08-31 13:32:52 +02:00
parent cad4323cd3
commit c7892c253f
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ CREATE USER <replaceable>name</replaceable>;
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 <literal>CREATE ROLE <replaceable>name</replaceable>
NOINHERIT</literal>. Alternatively, inheritance can be overriden
NOINHERIT</literal>. Alternatively, inheritance can be overridden
for individual grants by using <literal>WITH INHERIT TRUE</literal>
or <literal>WITH INHERIT FALSE</literal>.
</para>