From fb29a164dfe81a6879536fddc3a9f1336a03670e Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 5 Aug 2013 17:57:01 +0100 Subject: [PATCH] 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 f85cdd46fc02..042cf0554a38 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} }; -- 2.47.3