diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-01-10 07:13:04 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-01-10 07:13:04 +0000 |
commit | 1aa408971f36db70447c816a805ca97fc10a4b46 (patch) | |
tree | 592df8b24c84900c7c3a9781c15106fc0f5f23f5 | |
parent | a54832714d89dbd5f6a86d7d8abe270b59d364d8 (diff) |
* 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
-rw-r--r-- | test/ruby/test_enumerator.rb | 2 | ||||
-rw-r--r-- | vm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_enumerator.rb b/test/ruby/test_enumerator.rb index 0ee33ca6f1..10ba2f184e 100644 --- a/test/ruby/test_enumerator.rb +++ b/test/ruby/test_enumerator.rb @@ -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 @@ -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; |