ruby-changes:27801
From: zzak <ko1@a...>
Date: Thu, 21 Mar 2013 07:35:49 +0900 (JST)
Subject: [ruby-changes:27801] zzak:r39853 (trunk): * ext/date/date_core.c: Typo in Date::MONTHNAMES by Matt Gauger
zzak 2013-03-21 07:35:38 +0900 (Thu, 21 Mar 2013) New Revision: 39853 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39853 Log: * ext/date/date_core.c: Typo in Date::MONTHNAMES by Matt Gauger [GH fixes #261] Modified files: trunk/ChangeLog trunk/ext/date/date_core.c Index: ChangeLog =================================================================== --- ChangeLog (revision 39852) +++ ChangeLog (revision 39853) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Thu Mar 21 07:34:00 2013 Zachary Scott <zachary@z...> + + * 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@r...> * lib/mkmf.rb (find_library): fix to format message. Index: ext/date/date_core.c =================================================================== --- ext/date/date_core.c (revision 39852) +++ ext/date/date_core.c (revision 39853) @@ -9315,7 +9315,7 @@ Init_date_core(void) https://github.com/ruby/ruby/blob/trunk/ext/date/date_core.c#L9315 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)); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/