aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_support_instrumentation.md
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/active_support_instrumentation.md
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/active_support_instrumentation.md')
-rw-r--r--guides/source/active_support_instrumentation.md2
1 files changed, 1 insertions, 1 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|