aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-29 05:31:57 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-29 05:31:57 +0000
commit52d8f9f3efb30905ccef0f061dbca6a4e4d30deb (patch)
treefb8d0aa2fbc0a985e8dcad378f0cf10d3342d002
parenta69756de6771d5140da6c330e16961e982676b70 (diff)
downloadruby-52d8f9f3efb30905ccef0f061dbca6a4e4d30deb.tar.gz
fix typos
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog10
1 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index ef4730fc12..190e1e7c3e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -110,7 +110,7 @@ Sun Oct 27 20:53:08 2013 Tanaka Akira <akr@fsij.org>
(readline_getc): Use rb_thread_call_without_gvl2 to invoke getc_func.
[ruby-dev:47033] [Bug #8749]
(clear_rl_instream, clear_rl_outstream): Close FILE structure
- allocated by this extention reliably. [ruby-core:57951] [Bug #9040]
+ allocated by this extension reliably. [ruby-core:57951] [Bug #9040]
(readline_readline): Use clear_rl_instream and clear_rl_outstream.
(readline_s_set_input): Set readline_rl_instream.
(readline_s_set_output): Set readline_rl_outstream.
@@ -118,7 +118,7 @@ Sun Oct 27 20:53:08 2013 Tanaka Akira <akr@fsij.org>
readline_getc doesn't block other threads for any FILE structure now.
[ruby-dev:47033] [Bug #8749] reported by Nobuhiro IMAI.
- [ruby-core:57951] [Bug #9040] reporeted by Eamonn Webster.
+ [ruby-core:57951] [Bug #9040] reported by Eamonn Webster.
Sat Oct 26 19:31:28 2013 Kazuki Tsujimoto <kazuki@callcc.net>
@@ -178,7 +178,7 @@ Sat Oct 26 06:35:41 2013 Masaya Tarui <tarui@ruby-lang.org>
Sat Oct 26 04:01:35 2013 Koichi Sasada <ko1@atdot.net>
* gc.c (gc_before_heap_sweep): fix freelist management.
- After rb_gc_force_recycle() for a object blonging to heap->freelist,
+ After rb_gc_force_recycle() for a object belonging to heap->freelist,
`heap->using_page->freelist' is not null.
Thu Oct 24 21:57:24 2013 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
@@ -274,11 +274,11 @@ Wed Oct 23 17:39:35 2013 Koichi Sasada <ko1@atdot.net>
Algorithm:
(1) Sweeping all pages in a heap and move empty pages from the
heap to tomb_heap.
- (2) Check all exsisting pages and free a page
+ (2) Check all existing pages and free a page
if all slots of this page are empty and
there is enough empty slots (checking by swept_num)
- To introduce this pach, there are several tuning of GC parameters.
+ To introduce this patch, there are several tuning of GC parameters.
Wed Oct 23 14:20:56 2013 Koichi Sasada <ko1@atdot.net>