diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2013-08-05 16:56:17 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2013-08-05 16:56:17 (GMT) |
commit | 5ad3514822a80c094f1cfe47ae59450001043482 (patch) | |
tree | 054f80a05c866c92c320d0109ed1483cf327540c /Modules | |
parent | 007684a7013e9a6c75b953681fe0466def784fc7 (diff) | |
download | cpython-5ad3514822a80c094f1cfe47ae59450001043482.zip cpython-5ad3514822a80c094f1cfe47ae59450001043482.tar.gz cpython-5ad3514822a80c094f1cfe47ae59450001043482.tar.bz2 |
Issue #18661: typo in grp.struct_group docstring.
Diffstat (limited to 'Modules')
-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 55da9b8..040d8b0 100644 --- a/Modules/grpmodule.c +++ b/Modules/grpmodule.c @@ -11,7 +11,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} }; |