From ccc78addd2e653269f88ad73233600be5032ef8b Mon Sep 17 00:00:00 2001 From: zzak Date: Wed, 16 Oct 2013 22:01:27 +0000 Subject: * 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 --- ext/date/date_core.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/date/date_core.c') diff --git a/ext/date/date_core.c b/ext/date/date_core.c index 54556303b9..176c76ef0c 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -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)); -- cgit v1.2.3