From: Adam Dangoor Date: Mon, 25 Jul 2022 09:54:42 +0000 (+0200) Subject: gh-95233: Correct grp.getgrgid parameter name in documentation (gid -> id) (gh-95232) X-Git-Tag: v3.12.0a1~857 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df7c8b95372169fb9d23140d35f91970ba32189d;p=thirdparty%2FPython%2Fcpython.git gh-95233: Correct grp.getgrgid parameter name in documentation (gid -> id) (gh-95232) --- diff --git a/Doc/library/grp.rst b/Doc/library/grp.rst index fbfb922d3e05..baa31752a2c7 100644 --- a/Doc/library/grp.rst +++ b/Doc/library/grp.rst @@ -38,7 +38,7 @@ accessible via :func:`getgrnam` or :func:`getgrgid`.) It defines the following items: -.. function:: getgrgid(gid) +.. function:: getgrgid(id) Return the group database entry for the given numeric group ID. :exc:`KeyError` is raised if the entry asked for cannot be found.