diff options
author | 45north <robin@45n.nl> | 2011-09-13 15:25:46 +0300 |
---|---|---|
committer | 45north <robin@45n.nl> | 2011-09-13 15:25:46 +0300 |
commit | 7b22b0193002de14a4915f064acb4a7715c24059 (patch) | |
tree | 39eba4c84b8558eca59436c9d489219ce9526cac | |
parent | 317ad8cb62d10f77cf0692f0a123b4a3358629a5 (diff) | |
download | rails-7b22b0193002de14a4915f064acb4a7715c24059.tar.gz rails-7b22b0193002de14a4915f064acb4a7715c24059.tar.bz2 rails-7b22b0193002de14a4915f064acb4a7715c24059.zip |
Fixed markup error.
-rw-r--r-- | railties/guides/source/initialization.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/initialization.textile b/railties/guides/source/initialization.textile index 9cc4dd5f04..8aabc3ae91 100644 --- a/railties/guides/source/initialization.textile +++ b/railties/guides/source/initialization.textile @@ -454,7 +454,7 @@ app = eval "Rack::Builder.new {( " + cfgfile + "\n )}.to_app", TOPLEVEL_BINDING, config </ruby> -The <ruby>initialize</ruby> method will take the block here and execute it within an instance of +Rack::Builder+. This is where the majority of the initialization process of Rails happens. The chain of events that this simple line sets off will be the focus of a large majority of this guide. The +require+ line for +config/environment.rb+ in +config.ru+ is the first to run: +The +initialize+ method will take the block here and execute it within an instance of +Rack::Builder+. This is where the majority of the initialization process of Rails happens. The chain of events that this simple line sets off will be the focus of a large majority of this guide. The +require+ line for +config/environment.rb+ in +config.ru+ is the first to run: <ruby> require ::File.expand_path('../config/environment', __FILE__) |