1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fixed a typo in an exception class name

This commit is contained in:
Nobuyoshi Nakada 2019-12-23 10:37:30 +09:00
parent 5f18635a80
commit 5de284ec78
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -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