diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-18 01:18:13 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-18 01:18:13 +0000 |
commit | 697a9d99ba1dc5db5a3e9ef1b69978a749599920 (patch) | |
tree | 48006c5e4fff30c13c04d519d25ab279ee2358d0 | |
parent | e67c70cfe301da7b62568310a4eddb9e0bb97572 (diff) | |
download | ruby-697a9d99ba1dc5db5a3e9ef1b69978a749599920.tar.gz ruby-697a9d99ba1dc5db5a3e9ef1b69978a749599920.tar.xz ruby-697a9d99ba1dc5db5a3e9ef1b69978a749599920.zip |
* ext/etc/etc.c (etc_passwd, etc_group): fixed rdoc. a patch from
okkez <okkez000 AT gmail.com> in [ruby-dev:35141].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/etc/etc.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Wed Jun 18 10:18:11 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ext/etc/etc.c (etc_passwd, etc_group): fixed rdoc. a patch from + okkez <okkez000 AT gmail.com> in [ruby-dev:35141]. + Wed Jun 18 08:58:16 2008 Eric Hodel <drbrain@segment7.net> * lib/rubygems/*: Fix errors for 1.9. diff --git a/ext/etc/etc.c b/ext/etc/etc.c index a714b0c56..6cff5ba7a 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: |