summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-18 04:16:00 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-18 04:16:00 +0000
commitdbc8565fa3b3afb227fc0e41acbcc1e395837bb7 (patch)
treedd362cdcdb05238ab09d34926c8e735e1d01a0b0 /ChangeLog
parentb06dfe594e0e4709d41f101ee7e9ecbb85728728 (diff)
typos in changelog
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38439 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 76dec742c4..e2834426fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -43,7 +43,7 @@ Tue Dec 18 06:36:12 2012 Koichi Sasada <ko1@atdot.net>
extensibility.
To overcome this problem, VM_METHOD_TYPE_CFUNC_FRAMELESS was
introduced (r37198). This type is a variant of CFUNC, but called
- their functiions directly without building a method frame.
+ their functions directly without building a method frame.
Any CFUNC method can be defined as frameless methods if a method
is not needed to make method frame. Frameless methods are faster
as specialized instructions (a bit slower, but no need to care).
@@ -82,7 +82,7 @@ Tue Dec 18 04:58:22 2012 Koichi Sasada <ko1@atdot.net>
class directly because singleton methods are defined in singleton
class. There are no compatible issue because TracePoint is introduced
after 2.0.
- But compatiblity with `set_trace_func' is brokne. This means that
+ But compatiblity with `set_trace_func' is broken. This means that
you can not replace all `set_trace_func' code with TracePoint
without consideration of this behavior.
[Bug #7554]