From 698b52c8791122e1e2a0aaa8708544c1a7cda68f Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 2 Aug 2022 08:02:14 -0700 Subject: [PATCH] gh-95233: Correct grp.getgrgid parameter name in documentation (gid -> id) (gh-95232) (cherry picked from commit df7c8b95372169fb9d23140d35f91970ba32189d) Co-authored-by: Adam Dangoor <adamdangoor@gmail.com> --- Doc/library/grp.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/grp.rst b/Doc/library/grp.rst index fbfb922d3e0..baa31752a2c 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. -- GitLab