diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-05 06:02:42 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-05 06:02:42 +0000 |
commit | c8cbae685fd88f24b8b1d0b160ba52985cd61410 (patch) | |
tree | d1d973ca316416d65f5a3d3d95ed98daac624c7e /tool | |
parent | fc8bda6ff7640223058591c9feb91d802c88437d (diff) |
Fix a typo [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65546 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rw-r--r-- | tool/transform_mjit_header.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/transform_mjit_header.rb b/tool/transform_mjit_header.rb index 91e4a971d2..5f89446c81 100644 --- a/tool/transform_mjit_header.rb +++ b/tool/transform_mjit_header.rb @@ -149,7 +149,7 @@ module MJITHeader def self.write(code, out) # create with strict permission, then will install proper - # permmsion + # permission FileUtils.mkdir_p(File.dirname(out), mode: 0700) File.binwrite("#{out}.new", code, perm: 0600) FileUtils.mv("#{out}.new", out) |