ruby-changes:22213
From: nobu <ko1@a...>
Date: Tue, 10 Jan 2012 16:13:16 +0900 (JST)
Subject: [ruby-changes:22213] nobu:r34262 (trunk, ruby_1_9_3, ruby_1_9_2): * test/ruby/test_enumerator.rb (test_nested_iteration): fix typo.
nobu 2012-01-10 16:13:04 +0900 (Tue, 10 Jan 2012) New Revision: 34262 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34262 Log: * test/ruby/test_enumerator.rb (test_nested_iteration): fix typo. Modified files: branches/ruby_1_9_2/test/ruby/test_enumerator.rb branches/ruby_1_9_3/test/ruby/test_enumerator.rb trunk/test/ruby/test_enumerator.rb trunk/vm.c Index: vm.c =================================================================== --- vm.c (revision 34261) +++ vm.c (revision 34262) @@ -1216,7 +1216,7 @@ vm_loop_start: result = vm_exec_core(th, initial); if ((state = th->state) != 0) { -#ifdef __llvm__ /* LLVM optimization guard for TestEnumerator#test_nested_itaration */ +#ifdef __llvm__ /* LLVM optimization guard for TestEnumerator#test_nested_iteration */ (void)__extension__({rb_thread_t t = *th; t;}); #endif err = result; Index: test/ruby/test_enumerator.rb =================================================================== --- test/ruby/test_enumerator.rb (revision 34261) +++ test/ruby/test_enumerator.rb (revision 34262) @@ -43,7 +43,7 @@ } end - def test_nested_itaration + def test_nested_iteration def (o = Object.new).each yield :ok1 yield [:ok2, :x].each.next Index: ruby_1_9_2/test/ruby/test_enumerator.rb =================================================================== --- ruby_1_9_2/test/ruby/test_enumerator.rb (revision 34261) +++ ruby_1_9_2/test/ruby/test_enumerator.rb (revision 34262) @@ -43,7 +43,7 @@ } end - def test_nested_itaration + def test_nested_iteration def (o = Object.new).each yield :ok1 yield [:ok2, :x].each.next Index: ruby_1_9_3/test/ruby/test_enumerator.rb =================================================================== --- ruby_1_9_3/test/ruby/test_enumerator.rb (revision 34261) +++ ruby_1_9_3/test/ruby/test_enumerator.rb (revision 34262) @@ -43,7 +43,7 @@ } end - def test_nested_itaration + def test_nested_iteration def (o = Object.new).each yield :ok1 yield [:ok2, :x].each.next -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/