* test/ruby/test_enumerator.rb (test_nested_iteration): fix typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34262 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-01-10 07:13:04 +00:00
Родитель a54832714d
Коммит 1aa408971f
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -43,7 +43,7 @@ class TestEnumerator < Test::Unit::TestCase
}
end
def test_nested_itaration
def test_nested_iteration
def (o = Object.new).each
yield :ok1
yield [:ok2, :x].each.next

2
vm.c
Просмотреть файл

@ -1216,7 +1216,7 @@ vm_exec(rb_thread_t *th)
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;