aboutsummaryrefslogtreecommitdiffstats
path: root/struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/struct.c b/struct.c
index df627b3955..60ef6d8cfd 100644
--- a/struct.c
+++ b/struct.c
@@ -896,11 +896,11 @@ rb_struct_aref(VALUE s, VALUE idx)
/*
* call-seq:
- * struct[name] = obj -> obj
- * struct[index] = obj -> obj
+ * struct[member] = obj -> obj
+ * struct[index] = obj -> obj
*
* Attribute Assignment---Sets the value of the given struct +member+ or
- * the member at the given +index+. Raises NameError if the +name+ does not
+ * the member at the given +index+. Raises NameError if the +member+ does not
* exist and IndexError if the +index+ is out of range.
*
* Customer = Struct.new(:name, :address, :zip)