diff options
author | duerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-04-06 07:23:40 +0000 |
---|---|---|
committer | duerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-04-06 07:23:40 +0000 |
commit | 611159923088a098ee5903e7fb356ec7f12debd1 (patch) | |
tree | e90d79747a2f10da2ddab61288b697228e108079 /struct.c | |
parent | 529827d711b1a5ed06bea18af8770d13d4f44e0e (diff) |
struct.c (documentation for rb_struct_members_m):
fix 'array of strings' to 'array of symbols'
[ruby-core:44152][Bug #6264]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'struct.c')
-rw-r--r-- | struct.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -82,7 +82,7 @@ rb_struct_s_members_m(VALUE klass) * call-seq: * struct.members -> array * - * Returns an array of strings representing the names of the instance + * Returns an array of symbols representing the names of the instance * variables. * * Customer = Struct.new(:name, :address, :zip) |