aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/initialization.md
diff options
context:
space:
mode:
authorJake Gavin <jakegavin@gmail.com>2015-05-27 12:15:13 -0700
committerJake Gavin <jakegavin@gmail.com>2015-05-27 12:24:06 -0700
commitc9f05c92a5383755d7cce04cfb18bc228391112f (patch)
tree3478d77b24cabc4a78ca0f760feaa056f51a017e /guides/source/initialization.md
parent8acf0cc3829b43b7dd86243e65bd7978b753d283 (diff)
downloadrails-c9f05c92a5383755d7cce04cfb18bc228391112f.tar.gz
rails-c9f05c92a5383755d7cce04cfb18bc228391112f.tar.bz2
rails-c9f05c92a5383755d7cce04cfb18bc228391112f.zip
Remove unnecessary reference to example Blog app [ci skip]
Diffstat (limited to 'guides/source/initialization.md')
-rw-r--r--guides/source/initialization.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/guides/source/initialization.md b/guides/source/initialization.md
index fb499e7b6d..0e9881e5dc 100644
--- a/guides/source/initialization.md
+++ b/guides/source/initialization.md
@@ -557,9 +557,8 @@ I18n and Rails configuration are all being defined here.
The rest of `config/application.rb` defines the configuration for the
`Rails::Application` which will be used once the application is fully
initialized. When `config/application.rb` has finished loading Rails and defined
-the application namespace, we go back to `config/environment.rb`,
-where the application is initialized. For example, if the application was called
-`Blog`, here we would find `Rails.application.initialize!`, which is
+the application namespace, we go back to `config/environment.rb`. Here, the
+application is initialized with `Rails.application.initialize!`, which is
defined in `rails/application.rb`.
### `railties/lib/rails/application.rb`