1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/date/date_core.c: Typo in Date::MONTHNAMES by Matt Gauger

[GH fixes #261]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-03-20 22:35:38 +00:00
parent 9cbd4ac367
commit 5d402803ee
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Thu Mar 21 07:34:00 2013 Zachary Scott <zachary@zacharyscott.net>
* ext/date/date_core.c: Typo in Date::MONTHNAMES by Matt Gauger
[GH fixes #261]
Wed Mar 20 22:53:14 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/mkmf.rb (find_library): fix to format message.

View file

@ -9315,7 +9315,7 @@ Init_date_core(void)
rb_include_module(cDate, rb_mComparable);
/* An array of stirng of full month name in English. The first
/* An array of string of full month name in English. The first
* element is nil.
*/
rb_define_const(cDate, "MONTHNAMES", mk_ary_of_str(13, monthnames));