From c7892c253fdc7bcb99a61e820798588ee4c071b9 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Wed, 31 Aug 2022 13:32:52 +0200 Subject: [PATCH] doc: Fix typo in user inheritance documentation Commit 620ac285483 accidentally introduced a typo in the privilege inheritance documentation --- doc/src/sgml/user-manag.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/user-manag.sgml b/doc/src/sgml/user-manag.sgml index 11b0b93f212..fc836d57481 100644 --- a/doc/src/sgml/user-manag.sgml +++ b/doc/src/sgml/user-manag.sgml @@ -244,7 +244,7 @@ CREATE USER name; 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.