ruby-changes:31236
From: zzak <ko1@a...>
Date: Thu, 17 Oct 2013 07:02:14 +0900 (JST)
Subject: [ruby-changes:31236] zzak:r43315 (trunk): * ext/date/date_core.c: [DOC] plural grammar fixed by @scott113341
zzak 2013-10-17 07:01:27 +0900 (Thu, 17 Oct 2013) New Revision: 43315 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=43315 Log: * ext/date/date_core.c: [DOC] plural grammar fixed by @scott113341 Contributed via documenting-ruby.org: documenting-ruby/ruby#16 https://github.com/documenting-ruby/ruby/pull/16 Modified files: trunk/ChangeLog trunk/ext/date/date_core.c Index: ChangeLog =================================================================== --- ChangeLog (revision 43314) +++ ChangeLog (revision 43315) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Thu Oct 17 06:58:42 2013 Zachary Scott <e@z...> + + * ext/date/date_core.c: [DOC] plural grammar fixed by @scott113341 + Contributed via documenting-ruby.org: documenting-ruby/ruby#16 + https://github.com/documenting-ruby/ruby/pull/16 + Thu Oct 17 05:52:31 2013 Zachary Scott <e@z...> * ext/io/nonblock/nonblock.c: [DOC] Document io/nonblock by reprah Index: ext/date/date_core.c =================================================================== --- ext/date/date_core.c (revision 43314) +++ ext/date/date_core.c (revision 43315) @@ -9221,23 +9221,23 @@ Init_date_core(void) https://github.com/ruby/ruby/blob/trunk/ext/date/date_core.c#L9221 rb_include_module(cDate, rb_mComparable); - /* An array of string of full month name in English. The first + /* An array of strings of full month names in English. The first * element is nil. */ rb_define_const(cDate, "MONTHNAMES", mk_ary_of_str(13, monthnames)); - /* An array of string of abbreviated month name in English. The + /* An array of strings of abbreviated month names in English. The * first element is nil. */ rb_define_const(cDate, "ABBR_MONTHNAMES", mk_ary_of_str(13, abbr_monthnames)); - /* An array of string of full name of days of the week in English. + /* An array of strings of the full names of days of the week in English. * The first is "Sunday". */ rb_define_const(cDate, "DAYNAMES", mk_ary_of_str(7, daynames)); - /* An array of string of abbreviated day name in English. The + /* An array of strings of abbreviated day names in English. The * first is "Sun". */ rb_define_const(cDate, "ABBR_DAYNAMES", mk_ary_of_str(7, abbr_daynames)); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/