From 4a8aa278b580c974697f1347377d7d2c8eeb6734 Mon Sep 17 00:00:00 2001 From: stomar Date: Thu, 14 Dec 2017 10:25:17 +0000 Subject: [PATCH] struct.c: [DOC] improve docs for Struct.new git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61232 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- struct.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/struct.c b/struct.c index 3a21ec8dbf..654e8670fa 100644 --- a/struct.c +++ b/struct.c @@ -475,11 +475,10 @@ rb_struct_define_under(VALUE outer, const char *name, ...) * Customer.new("Dave", "123 Main") * #=> # * - * If keyword_init: true option is given, .new takes keyword arguments instead - * of normal arguments. + * If the optional +keyword_init+ keyword argument is set to +true+, + * .new takes keyword arguments instead of normal arguments. * * Customer = Struct.new(:name, :address, keyword_init: true) - * #=> Customer * Customer.new(name: "Dave", address: "123 Main") * #=> # *