From e63b752f635f62e22859e034a55d7918945c3961 Mon Sep 17 00:00:00 2001 From: Fabrizio Regini Date: Thu, 27 Dec 2012 18:11:21 +0100 Subject: [PATCH] Fixed couple of typos --- guides/source/active_support_instrumentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md index cf5a51fc5b..6b3be69942 100644 --- a/guides/source/active_support_instrumentation.md +++ b/guides/source/active_support_instrumentation.md @@ -432,7 +432,7 @@ from block args like this: ```ruby ActiveSupport::Notifications.subscribe "process_action.action_controller" do |*args| - event = ActiveSupport::Notification::Event.new args + event = ActiveSupport::Notifications::Event.new *args event.name # => "process_action.action_controller" event.duration # => 10 (in milliseconds)