[MacRuby] #325: replace "uncatched" with "uncaught"
#325: replace "uncatched" with "uncaught" -------------------------------------+-------------------------------------- Reporter: jordan.breeding@… | Owner: lsansonetti@… Type: defect | Status: new Priority: blocker | Milestone: MacRuby 0.5 Component: MacRuby | Keywords: -------------------------------------+-------------------------------------- the word "uncatched" sounds odd, "uncaught" is more commonly used, switch to it {{{ diff --git a/vm.cpp b/vm.cpp index 281d12d..79b1712 100644 --- a/vm.cpp +++ b/vm.cpp @@ -4538,7 +4538,7 @@ rb_vm_print_current_exception(void) { VALUE exc = GET_VM()->current_exception(); if (exc == Qnil) { - printf("uncatched Objective-C/C++ exception...\n"); + printf("uncaught Objective-C/C++ exception...\n"); std::terminate(); } }}} -- Ticket URL: <http://www.macruby.org/trac/ticket/325> MacRuby <http://macruby.org/>
#325: replace "uncatched" with "uncaught" -------------------------------------+-------------------------------------- Reporter: jordan.breeding@… | Owner: lsansonetti@… Type: defect | Status: closed Priority: blocker | Milestone: MacRuby 0.5 Component: MacRuby | Resolution: fixed Keywords: | -------------------------------------+-------------------------------------- Changes (by lsansonetti@…): * status: new => closed * resolution: => fixed Comment: Oops, fixed in r2463. -- Ticket URL: <http://www.macruby.org/trac/ticket/325#comment:1> MacRuby <http://macruby.org/>
participants (1)
-
MacRuby