summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-13 09:11:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-13 09:11:58 +0000
commit3e86bd8f3ad76dca34a61e2f0053cbcfd18e7eae (patch)
treed4bbd6e725ee950ad3902857136581f1437dae31
parentbed2696508c63223e609e5caf39adf5c10fb0cb7 (diff)
* lib/mkmf.rb (try_do): fix typo. a patch from Peter Weldon
at [ruby-core:32327]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/mkmf.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e9826db20c..6cd56f68a3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Sep 13 18:11:55 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * lib/mkmf.rb (try_do): fix typo. a patch from Peter Weldon
+ at [ruby-core:32327].
+
Mon Sep 13 10:12:09 2010 NARUSE, Yui <naruse@ruby-lang.org>
* util.c (ruby_strtod): reject Float('0x0.').
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 5e347a7dbc..e0b665a2f2 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -362,7 +362,7 @@ end
def try_do(src, command, &b)
unless have_devel?
raise <<MSG
-The complier failed to generate an executable file.
+The compiler failed to generate an executable file.
You have to install development tools first.
MSG
end