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

Fixed typos in racc

This commit is contained in:
Nobuyoshi Nakada 2020-04-27 15:28:06 +09:00
parent 6009790e40
commit aca935a670
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
3 changed files with 7 additions and 7 deletions

View file

@ -181,8 +181,8 @@ end
# Your own parser is completely yours.
module Racc
unless defined?(Racc_No_Extentions)
Racc_No_Extentions = false # :nodoc:
unless defined?(Racc_No_Extensions)
Racc_No_Extensions = false # :nodoc:
end
class Parser
@ -202,7 +202,7 @@ module Racc
unless new.respond_to?(:_racc_do_parse_c, true)
raise LoadError, 'old cparse.so'
end
if Racc_No_Extentions
if Racc_No_Extensions
raise LoadError, 'selecting ruby version of racc runtime core'
end