From 5de284ec78220e75643f89b454ce999da0c1c195 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 23 Dec 2019 10:37:30 +0900 Subject: [PATCH] Fixed a typo in an exception class name --- tool/mk_builtin_loader.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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