diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-11-16 06:58:43 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-11-16 06:58:43 +0000 |
commit | c9baf1fabff8768e240533ce5399e1517db636b2 (patch) | |
tree | d2dc4c6aa6f6e93cb505f207370a384baa65328b /struct.c | |
parent | d736eded9d4cb7ab5ddc693059d55f8d1e369c98 (diff) | |
download | ruby-c9baf1fabff8768e240533ce5399e1517db636b2.tar.gz |
* struct.c: Standardize a method signature of Struct#[]=.
[ci skip][fix GH-1095]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'struct.c')
-rw-r--r-- | struct.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |