From fb29a164dfe81a6879536fddc3a9f1336a03670e Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 5 Aug 2013 17:57:01 +0100 Subject: Issue #18661: typo in grp.struct_group docstring. Thanks Vajrasky Kok. --- Modules/grpmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} }; -- cgit v0.12