aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorFlorian Weber <csshsh@gmail.com>2005-10-20 09:24:18 +0000
committerFlorian Weber <csshsh@gmail.com>2005-10-20 09:24:18 +0000
commit07bff0b535941c6a52555466d1e412f2b9305231 (patch)
tree288d9fe32ba2ed79dea34a7256382eea9187b3bf /railties/lib
parente440098abaea199fdebe4be1b882f078989f66b3 (diff)
downloadrails-07bff0b535941c6a52555466d1e412f2b9305231.tar.gz
rails-07bff0b535941c6a52555466d1e412f2b9305231.tar.bz2
rails-07bff0b535941c6a52555466d1e412f2b9305231.zip
Fixed misspell of "initialize_framework_settings"
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2693 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/initializer.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb
index 09eee28be0..2d72b55b8b 100644
--- a/railties/lib/initializer.rb
+++ b/railties/lib/initializer.rb
@@ -57,7 +57,7 @@ module Rails
# * #initialize_dependency_mechanism
# * #initialize_breakpoints
# * #initialize_whiny_nils
- # * #intitialize_framework_settings
+ # * #initialize_framework_settings
# * #load_environment
# * #load_plugins
#
@@ -81,7 +81,7 @@ module Rails
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 @@ module Rails
# 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")