Skip to content

Commit

Permalink
[ci skip] Add missing colon and period in initialization.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanitoFatas committed Jun 25, 2014
1 parent 34573df commit 092f53e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions guides/source/initialization.md
Expand Up @@ -301,7 +301,7 @@ def default_options
end
```

There is no `REQUEST_METHOD` key in `ENV` so we can skip over that line. The next line merges in the options from `opt_parser` which is defined plainly in `Rack::Server`
There is no `REQUEST_METHOD` key in `ENV` so we can skip over that line. The next line merges in the options from `opt_parser` which is defined plainly in `Rack::Server`:

```ruby
def opt_parser
Expand Down Expand Up @@ -559,7 +559,7 @@ 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
defined in `rails/application.rb`
defined in `rails/application.rb`.
### `railties/lib/rails/application.rb`
Expand All @@ -575,7 +575,7 @@ end
```
As you can see, you can only initialize an app once. The initializers are run through
the `run_initializers` method which is defined in `railties/lib/rails/initializable.rb`
the `run_initializers` method which is defined in `railties/lib/rails/initializable.rb`:
```ruby
def run_initializers(group=:default, *args)
Expand Down

0 comments on commit 092f53e

Please sign in to comment.