aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/initialization.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-11-24 19:55:46 +0100
committerXavier Noria <fxn@hashref.com>2013-11-24 19:55:46 +0100
commit28a6a7ea3bd627a8b6693a4cb8305b89467592b4 (patch)
tree75b26f5ff4cd674f0a6c33039ceb63c7e6135680 /guides/source/initialization.md
parenteb67aa976b42e4686274ead08031e465190d348d (diff)
downloadrails-28a6a7ea3bd627a8b6693a4cb8305b89467592b4.tar.gz
rails-28a6a7ea3bd627a8b6693a4cb8305b89467592b4.tar.bz2
rails-28a6a7ea3bd627a8b6693a4cb8305b89467592b4.zip
a couple of copy-edits before merging [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 f1bbb5bb13..5e2e0ad3e3 100644
--- a/guides/source/initialization.md
+++ b/guides/source/initialization.md
@@ -128,8 +128,7 @@ A standard Rails application depends on several gems, specifically:
Once `config/boot.rb` has finished, the next file that is required is
`rails/commands`, which helps in expanding aliases. In the current case, the
-`ARGV` array simply contains `server` which will be passed over to
-`rails/commands_tasks`.
+`ARGV` array simply contains `server` which will be passed over:
```ruby
ARGV << '--help' if ARGV.empty?
@@ -160,7 +159,7 @@ defined here to find the matching command.
### `rails/commands/command_tasks.rb`
When one types an incorrect rails command, the `run_command` is responsible for
-throwing an error message. If the command is valid, a function of the same name
+throwing an error message. If the command is valid, a method of the same name
is called.
```ruby