summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-23 10:37:30 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-23 10:37:30 +0900
commit5de284ec78220e75643f89b454ce999da0c1c195 (patch)
treeca6510da5bf3988649206a3912778305cafd6fff
parent5f18635a800eee29fd051ea758a2ec561f090ebe (diff)
Fixed a typo in an exception class name
-rw-r--r--tool/mk_builtin_loader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/mk_builtin_loader.rb b/tool/mk_builtin_loader.rb
index b7d7c17291..dcd4b93532 100644
--- a/tool/mk_builtin_loader.rb
+++ b/tool/mk_builtin_loader.rb
@@ -117,7 +117,7 @@ def mk_builtin_header file
begin
f = open(ofile, 'w')
- rescue Errno::EACCESS
+ rescue Errno::EACCES
# Fall back to the current directory
f = open(File.basename(ofile), 'w')
end