ruby-changes:36205
From: kazu <ko1@a...>
Date: Wed, 5 Nov 2014 23:15:22 +0900 (JST)
Subject: [ruby-changes:36205] kazu:r48286 (trunk): fix typos [ci skip]
kazu 2014-11-05 23:15:10 +0900 (Wed, 05 Nov 2014) New Revision: 48286 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=48286 Log: fix typos [ci skip] Modified files: trunk/ChangeLog Index: ChangeLog =================================================================== --- ChangeLog (revision 48285) +++ ChangeLog (revision 48286) @@ -124,7 +124,7 @@ Mon Nov 3 13:38:28 2014 Koichi Sasada https://github.com/ruby/ruby/blob/trunk/ChangeLog#L124 Change them to: `opt_num' is the number of optional parameters. - `opt_talbe' has "opt_num + 1" entries. + `opt_table' has "opt_num + 1" entries. This change simplify parameter fitting logics. @@ -186,7 +186,7 @@ Mon Nov 3 07:49:34 2014 Koichi Sasada https://github.com/ruby/ruby/blob/trunk/ChangeLog#L186 * iseq.c (iseq_data_to_ary): support keyword argument. -xMon Nov 3 03:39:04 2014 Koichi Sasada <ko1@a...> +Mon Nov 3 03:39:04 2014 Koichi Sasada <ko1@a...> * test/ruby/test_method.rb: r48239 makes this test green. @@ -210,7 +210,7 @@ Mon Nov 03 03:02:38 2014 Koichi Sasada https://github.com/ruby/ruby/blob/trunk/ChangeLog#L210 to represent keyword bitmap parameter index. This bitmap parameter shows that which keyword parameters are given or not given (0 for given). - It is refered by `checkkeyword' instruction described bellow. + It is referred by `checkkeyword' instruction described bellow. * rename rb_iseq_t::arg_keyword_check to rb_iseq_t::arg_keyword_rest to represent keyword rest parameter index. * add rb_iseq_t::arg_keyword_default_values to represent default @@ -238,7 +238,7 @@ Mon Nov 03 03:02:38 2014 Koichi Sasada https://github.com/ruby/ruby/blob/trunk/ChangeLog#L238 * insns.def (checkkeyword): add new instruction. This instruction check the availability of corresponding keyword. - For example, a method "def foo k1: 'v1'; end" is cimpiled to the + For example, a method "def foo k1: 'v1'; end" is compiled to the following instructions. 0000 checkkeyword 2, 0 # check k1 is given. @@ -385,7 +385,7 @@ Fri Oct 31 16:47:35 2014 Akinori MUSHA https://github.com/ruby/ruby/blob/trunk/ChangeLog#L385 Fri Oct 31 16:33:46 2014 Akinori MUSHA <knu@i...> * lib/net/imap.rb (Net::IMAP#fetch): [DOC] Document that - Net::IMAP#fetch will return nil instead of an emtpy array. + Net::IMAP#fetch will return nil instead of an empty array. Fri Oct 31 12:54:43 2014 Nobuyoshi Nakada <nobu@r...> -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/