diff --git a/ChangeLog b/ChangeLog index 292514277c..0e7e46dea3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Jun 18 10:18:11 2008 Nobuyoshi Nakada + + * ext/etc/etc.c (etc_passwd, etc_group): fixed rdoc. a patch from + okkez in [ruby-dev:35141]. + Wed Jun 18 08:58:16 2008 Eric Hodel * lib/rubygems/*: Fix errors for 1.9. diff --git a/ext/etc/etc.c b/ext/etc/etc.c index a714b0c56d..6cff5ba7ad 100644 --- a/ext/etc/etc.c +++ b/ext/etc/etc.c @@ -188,7 +188,7 @@ passwd_iterate(void) /* Provides a convenient Ruby iterator which executes a block for each entry * in the /etc/passwd file. * - * The code block is passed an Etc::Passwd struct; see getpwent above for + * The code block is passed an Struct::Passwd struct; see getpwent above for * details. * * Example: @@ -392,7 +392,7 @@ group_iterate(void) /* Provides a convenient Ruby iterator which executes a block for each entry * in the /etc/group file. * - * The code block is passed an Etc::Group struct; see getgrent above for + * The code block is passed an Struct::Group struct; see getgrent above for * details. * * Example: