diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2013-08-05 16:57:01 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2013-08-05 16:57:01 (GMT) |
commit | fb29a164dfe81a6879536fddc3a9f1336a03670e (patch) | |
tree | 76cfb9d02ec7af0e48f6933e8317ceabdaf09869 /Modules/grpmodule.c | |
parent | 2833f42802ddd68a10adf7dc4fa74e3b3a3fe288 (diff) | |
download | cpython-fb29a164dfe81a6879536fddc3a9f1336a03670e.zip cpython-fb29a164dfe81a6879536fddc3a9f1336a03670e.tar.gz cpython-fb29a164dfe81a6879536fddc3a9f1336a03670e.tar.bz2 |
Issue #18661: typo in grp.struct_group docstring. Thanks Vajrasky Kok.
Diffstat (limited to 'Modules/grpmodule.c')
-rw-r--r-- | Modules/grpmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c index f85cdd4..042cf05 100644 --- a/Modules/grpmodule.c +++ b/Modules/grpmodule.c @@ -10,7 +10,7 @@ static PyStructSequence_Field struct_group_type_fields[] = { {"gr_name", "group name"}, {"gr_passwd", "password"}, {"gr_gid", "group id"}, - {"gr_mem", "group memebers"}, + {"gr_mem", "group members"}, {0} }; |