From 00f9a74bcac20e25b69aae3a3beafddb18293abd Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 15 Dec 2015 15:39:20 +0000 Subject: [PATCH] Fix typo [ci skip] * doc/extension.rdoc: [DOC] fix double-word typo. [Fix GH-1153] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ doc/extension.rdoc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 884c2bb4d4..eabfe4646d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Dec 16 00:39:27 2015 Jake Worth + + * doc/extension.rdoc: [DOC] fix double-word typo. [Fix GH-1153] + Wed Dec 16 00:25:41 2015 Naohisa Goto * lib/webrick/utils.rb (WEBrick::Utils::TimeoutHandler#initialize): diff --git a/doc/extension.rdoc b/doc/extension.rdoc index 40c68e8be0..f60e97f779 100644 --- a/doc/extension.rdoc +++ b/doc/extension.rdoc @@ -1767,7 +1767,7 @@ barriers. Please carefully consider the risks. Before inserting write barriers, you need to know about RGenGC algorithm (gc.c will help you). Macros and functions to insert write barriers are -available in in include/ruby/ruby.h. An example is available in iseq.c. +available in include/ruby/ruby.h. An example is available in iseq.c. For a complete guide for RGenGC and write barriers, please refer to .