summaryrefslogtreecommitdiff
path: root/struct.c
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-06 07:23:40 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-06 07:23:40 +0000
commit611159923088a098ee5903e7fb356ec7f12debd1 (patch)
treee90d79747a2f10da2ddab61288b697228e108079 /struct.c
parent529827d711b1a5ed06bea18af8770d13d4f44e0e (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/struct.c b/struct.c
index f3dd085927..042932d6af 100644
--- a/struct.c
+++ b/struct.c
@@ -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)