summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-10 06:49:25 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-10 06:49:25 +0000
commit72f980510962c55dedda97a36208994afe732533 (patch)
treed0341fff6dad2ec6952d8be68752625d93b76210 /ChangeLog
parent2cdd17b458eb2be8dce033217d6debb46b716090 (diff)
fix a typo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog2
1 files changed, 1 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 156db7953b..65f9ee37f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -37,7 +37,7 @@ Thu Jan 10 03:29:55 2013 Koichi Sasada <ko1@atdot.net>
* compile.c (compile_array_): modify wrong optimization.
A script "[print(1)]; print(2)" should output "12".
- However, the compiler had eliminted "[print(1)]" expression
+ However, the compiler had eliminated "[print(1)]" expression
because it is void expression (unused array).
Of course, side-effect should be remained.
This issue is reported by Masaya Tarui.