diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-02-10 15:32:01 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-02-10 15:32:01 +0100 |
commit | 56fa194daa171f50b73f08ec0a52f845dc0f5a51 (patch) | |
tree | 629f1a7aba1dfc667fb47be368c3f48ae3e93092 | |
parent | 07c70245a128cfe42f134be8759963dc98f1a63e (diff) | |
download | rails-56fa194daa171f50b73f08ec0a52f845dc0f5a51.tar.gz rails-56fa194daa171f50b73f08ec0a52f845dc0f5a51.tar.bz2 rails-56fa194daa171f50b73f08ec0a52f845dc0f5a51.zip |
docs, update broken link. [ci skip]
from https://github.com/rack/rack/blob/master/lib/rack/server.rb#L289-L300.
-rw-r--r-- | guides/source/initialization.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/initialization.md b/guides/source/initialization.md index 5e2e0ad3e3..ec3cec5c6f 100644 --- a/guides/source/initialization.md +++ b/guides/source/initialization.md @@ -270,7 +270,7 @@ def parse_options(args) options = default_options # Don't evaluate CGI ISINDEX parameters. - # http://hoohoo.ncsa.uiuc.edu/cgi/cl.html + # http://www.meb.uni-bonn.de/docs/cgi/cl.html args.clear if ENV.include?("REQUEST_METHOD") options.merge! opt_parser.parse! args @@ -522,7 +522,7 @@ I18n and Rails configuration are all being defined here. ### Back to `config/environment.rb` The rest of `config/application.rb` defines the configuration for the -`Rails::Application` which will be used once the application is fully +`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 |