aboutsummaryrefslogtreecommitdiffstats
path: root/struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/struct.c b/struct.c
index ea70abcfbb..28d32c38a2 100644
--- a/struct.c
+++ b/struct.c
@@ -373,7 +373,8 @@ rb_struct_define_under(VALUE outer, const char *name, ...)
* The last two forms create a new instance of a struct subclass. The number
* of +value+ parameters must be less than or equal to the number of
* attributes defined for the structure. Unset parameters default to +nil+.
- * Passing too many parameters will raise an ArgumentError.
+ * Passing more parameters than number of attributes will raise
+ * an ArgumentError.
*
* # Create a structure named by its constant
* Customer = Struct.new(:name, :address)