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

* lib/racc/parser.rb: Fix typo

s/Extentions/Extensions/

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43905 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
a_matsuda 2013-11-29 01:57:04 +00:00
parent 2e9230c4b3
commit 19c9a70a07

View file

@ -174,8 +174,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
@ -192,7 +192,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