Fixed misspell of "initialize_framework_settings"

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2693 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Florian Weber 2005-10-20 09:24:18 +00:00
parent e440098aba
commit 07bff0b535

@ -57,7 +57,7 @@ def initialize(configuration)
# * #initialize_dependency_mechanism
# * #initialize_breakpoints
# * #initialize_whiny_nils
# * #intitialize_framework_settings
# * #initialize_framework_settings
# * #load_environment
# * #load_plugins
#
@ -81,7 +81,7 @@ def process
initialize_breakpoints
initialize_whiny_nils
intitialize_framework_settings
initialize_framework_settings
# Support for legacy configuration style where the environment
# could overwrite anything set from the defaults/global through
@ -239,7 +239,7 @@ def initialize_whiny_nils
# Initialize framework-specific settings for each of the loaded frameworks
# (Configuration#frameworks). The available settings map to the accessors
# on each of the corresponding Base classes.
def intitialize_framework_settings
def initialize_framework_settings
configuration.frameworks.each do |framework|
base_class = framework.to_s.camelize.constantize.const_get("Base")