New GitHub issue #95233 from adamtheturtle:<br>

<hr>

<pre>
In https://docs.python.org/3/library/grp.html we see the heading:

```
grp.getgrgid(gid)
```

As per the following, the `grp.getgrgid` parameter is `id` and not `gid`.

```
>>> import sys
>>> sys.version
'3.9.13 (main, May 24 2022, 21:13:51) \n[Clang 13.1.6 (clang-1316.0.21.2)]'
>>> import grp
>>> grp.getgrgid(id=1)
grp.struct_group(gr_name='daemon', gr_passwd='*', gr_gid=1, gr_mem=['root'])
>>> grp.getgrgid(gid=1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: getgrgid() missing required argument 'id' (pos 1)
>>> 
```
</pre>

<hr>

<a href="https://github.com/python/cpython/issues/95233">View on GitHub</a>
<p>Labels: docs</p>
<p>Assignee: </p>