summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-16 04:02:01 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-16 04:02:01 +0000
commit41e5fdb20f6bfa9fb62af2edf029a84f74ac970f (patch)
tree109e0ef1e09c6a8c3d62efa1bef2451884cad6fb /ChangeLog
parent37b8f7b84fedff7937598273fb65c7fb4f8390f1 (diff)
fix typos
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1c479bc42f..b658b67725 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -31,7 +31,7 @@ Tue Oct 16 06:44:06 2012 Koichi Sasada <ko1@atdot.net>
Tue Oct 16 06:29:18 2012 Koichi Sasada <ko1@atdot.net>
* vm_insnhelper.c (vm_call_method): disable CI_SET_FASTPATH() if
- this method call needs splat argument because cahced functions
+ this method call needs splat argument because cached functions
(vm_call_attrset, vm_call_ivar, vm_call_cfunc_fast_(unary|binary))
do not check an arity.
@@ -42,7 +42,7 @@ Tue Oct 16 06:15:44 2012 Koichi Sasada <ko1@atdot.net>
* method.h: introduce new method type VM_METHOD_TYPE_CFUNC_FAST.
This method is similar to VM_METHOD_TYPE_CFUNC methods, but
called cfunc without building new frame (does not push new control
- frame). If error is occured in cfunc, the backtrace only shows
+ frame). If error is occurred in cfunc, the backtrace only shows
caller frame and upper.
This kind of methods can be added by rb_define_method_fast().
This feature is similar to specialized instructions (opt_plus, etc),