diff options
author | Jonathan Roes <jroes@jroes.net> | 2013-04-18 23:02:54 -0300 |
---|---|---|
committer | Jonathan Roes <jroes@jroes.net> | 2013-04-18 23:02:54 -0300 |
commit | 48cd23570b42147de3cb54446e620c961d089f07 (patch) | |
tree | 0948f806e377889f8bd673911ef0f585bc6beb35 /guides | |
parent | 1af528df58ea20fecd2668fd065144a1ba573658 (diff) | |
download | rails-48cd23570b42147de3cb54446e620c961d089f07.tar.gz rails-48cd23570b42147de3cb54446e620c961d089f07.tar.bz2 rails-48cd23570b42147de3cb54446e620c961d089f07.zip |
Be more specific about the root directory.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/initialization.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/initialization.md b/guides/source/initialization.md index 610792fd6a..c71b0d5697 100644 --- a/guides/source/initialization.md +++ b/guides/source/initialization.md @@ -129,7 +129,7 @@ when 'server' end ``` -This file will change into the root of the directory (a path two directories back from `APP_PATH` which points at `config/application.rb`), but only if the `config.ru` file isn't found. This then requires `rails/commands/server` which sets up the `Rails::Server` class. +This file will change into the Rails root directory (a path two directories up from `APP_PATH` which points at `config/application.rb`), but only if the `config.ru` file isn't found. This then requires `rails/commands/server` which sets up the `Rails::Server` class. ```ruby require 'fileutils' |