aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-24 00:34:06 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-24 00:34:06 +0530
commitd45145acdc576e46a1f1719d69bec96b5bf07b0a (patch)
tree46e85a31b6e5b47c0f37614b5dd03bd705ffa747 /guides/source
parent12cecdd345ae36816c2eb7f94e3855a7fcfed2f8 (diff)
downloadrails-d45145acdc576e46a1f1719d69bec96b5bf07b0a.tar.gz
rails-d45145acdc576e46a1f1719d69bec96b5bf07b0a.tar.bz2
rails-d45145acdc576e46a1f1719d69bec96b5bf07b0a.zip
Changed 'args' to 'arguments' when used in places other than code with fixing few more typos
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/active_support_instrumentation.md2
-rw-r--r--guides/source/command_line.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md
index 69421e6876..0f33c58011 100644
--- a/guides/source/active_support_instrumentation.md
+++ b/guides/source/active_support_instrumentation.md
@@ -428,7 +428,7 @@ end
```
Defining all those block arguments each time can be tedious. You can easily create an `ActiveSupport::Notifications::Event`
-from block args like this:
+from block arguments like this:
```ruby
ActiveSupport::Notifications.subscribe "process_action.action_controller" do |*args|
diff --git a/guides/source/command_line.md b/guides/source/command_line.md
index 9d1fb03fab..7669b5edeb 100644
--- a/guides/source/command_line.md
+++ b/guides/source/command_line.md
@@ -82,7 +82,7 @@ The server can be run on a different port using the `-p` option. The default dev
$ rails server -e production -p 4000
```
-The `-b` option binds Rails to the specified ip, by default it is 0.0.0.0. You can run a server as a daemon by passing a `-d` option.
+The `-b` option binds Rails to the specified IP, by default it is 0.0.0.0. You can run a server as a daemon by passing a `-d` option.
### `rails generate`