diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2013-08-05 16:57:54 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2013-08-05 16:57:54 (GMT) |
commit | e5192cdbb91ab7c081cd321178dacd2a22f10019 (patch) | |
tree | 13ed325cfac2a1d324b45b560c17df5ec3f19681 /Modules/grpmodule.c | |
parent | f3e4b62d02cc326abd7d9ec2637208e3401c7fc6 (diff) | |
parent | fb29a164dfe81a6879536fddc3a9f1336a03670e (diff) | |
download | cpython-e5192cdbb91ab7c081cd321178dacd2a22f10019.zip cpython-e5192cdbb91ab7c081cd321178dacd2a22f10019.tar.gz cpython-e5192cdbb91ab7c081cd321178dacd2a22f10019.tar.bz2 |
Issue #18661: typo in grp.struct_group docstring (fix merged from 3.3). 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 73596d3..a85a271 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} }; |