diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-06-15 13:09:47 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-06-15 13:09:47 +0000 |
commit | 7889d3bea9c4db4c4f9a0b3be55cfdf66c20401d (patch) | |
tree | 4021e36582dea8832123433bea75970a82633e01 | |
parent | 064b70b60387d33f6d2e026477372699421d5c7e (diff) |
fix typos [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -2,8 +2,6 @@ Fri Jun 15 20:54:28 2012 Kazuhiro NISHIYAMA <[email protected]> * vm_backtrace.c (backtrace_collect): rename from backtreace_collect. -Fri Jun 15 09:01:35 2012 Yuki Yugui Sonoda <[email protected]> - Fri Jun 15 19:22:13 2012 Koichi Sasada <[email protected]> * vm_core.h: remove VM_FRAME_MAGIC_FINISH (finish frame type). @@ -19,7 +17,7 @@ Fri Jun 15 19:22:13 2012 Koichi Sasada <[email protected]> With such mechanism, `leave' instruction (which returns one frame from current scope) doesn't need to check that this `leave' should also return from VM loop function. - Strictly, one branch can be removed from `leave' instructon. + Strictly, one branch can be removed from `leave' instruction. Consideration: However, pushing the `finish frame' needs costs because it needs several memory accesses. The number of pushing @@ -1477,7 +1475,7 @@ Fri May 25 16:11:27 2012 NAKAMURA Usaku <[email protected]> Fri May 25 10:52:52 2012 Koichi Sasada <[email protected]> - * vm.c: refactoring backtrace related funcitons. + * vm.c: refactoring backtrace related functions. (1) unify similar functions (rb_backtrace_each() and backtrace_object()). backtrace_each() is a unified function. variation: @@ -1487,7 +1485,7 @@ Fri May 25 10:52:52 2012 Koichi Sasada <[email protected]> d) rb_backtrace_print_as_bugreport(): print backtrace on bugreport style. (2) remove rb_backtrace_each(). Use backtrace_each() instead. - (3) chang the type of lev parameter to size_t. + (3) change the type of lev parameter to size_t. a) lev == 0 means current frame (exception, etc use it). b) lev == 1 means upper frame (caller(0) use it). @@ -4788,7 +4786,7 @@ Wed Feb 22 17:36:22 2012 Nobuyoshi Nakada <[email protected]> Wed Feb 22 17:07:35 2012 Nobuyoshi Nakada <[email protected]> - * io.c (rb_io_s_foreach): return enumerator including kerword + * io.c (rb_io_s_foreach): return enumerator including keyword arguments. [ruby-dev:45267][Bug #6054] Wed Feb 22 12:15:16 2012 NARUSE, Yui <[email protected]> |