mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
64afa78e8a
commit
ccc78addd2
2 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
Thu Oct 17 06:58:42 2013 Zachary Scott <e@zzak.io>
|
||||
|
||||
* 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@zzak.io>
|
||||
|
||||
* ext/io/nonblock/nonblock.c: [DOC] Document io/nonblock by reprah
|
||||
|
|
|
@ -9221,23 +9221,23 @@ Init_date_core(void)
|
|||
|
||||
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));
|
||||
|
|
Loading…
Reference in a new issue