summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-28 02:40:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-28 02:40:28 +0000
commitb2f4548334c9909721aae806db08298014107dd1 (patch)
tree7b610aba03970412c6d02608efbff6f855d36222
parent9a75b9198a5fb68bb9303ade80bc0079ca5c5b18 (diff)
* doc/ChangeLog-1.9.3, test/gdbm/test_gdbm.rb: fixed mingw typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34149 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--doc/ChangeLog-1.9.32
-rw-r--r--test/gdbm/test_gdbm.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/ChangeLog-1.9.3 b/doc/ChangeLog-1.9.3
index ef10d65db0..d440e76965 100644
--- a/doc/ChangeLog-1.9.3
+++ b/doc/ChangeLog-1.9.3
@@ -69282,7 +69282,7 @@ Mon Nov 8 22:20:19 2004 Dave Thomas <dave@pragprog.com>
Mon Nov 8 00:14:13 2004 WATANABE Hirofumi <eban@ruby-lang.org>
- * configure.in: add setup for mignw32 cross compiling.
+ * configure.in: add setup for mingw32 cross compiling.
[ruby-talk:119413]
Sun Nov 7 23:49:26 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb
index 64f135b683..ebee26369a 100644
--- a/test/gdbm/test_gdbm.rb
+++ b/test/gdbm/test_gdbm.rb
@@ -83,7 +83,7 @@ if defined? GDBM
begin
assert_instance_of(GDBM, gdbm = GDBM.open("#{@tmpdir}/#{@prefix}"))
gdbm.close
- assert_equal(File.stat("#{@tmpdir}/#{@prefix}").mode & 0777, 0666) unless /mswin|mignw/ =~ RUBY_PLATFORM
+ assert_equal(File.stat("#{@tmpdir}/#{@prefix}").mode & 0777, 0666) unless /mswin|mingw/ =~ RUBY_PLATFORM
assert_instance_of(GDBM, gdbm = GDBM.open("#{@tmpdir}/#{@prefix}2", 0644))
gdbm.close
assert_equal(File.stat("#{@tmpdir}/#{@prefix}2").mode & 0777, 0644)