From a2f2e5a09d436507070dff4511924262a3973206 Mon Sep 17 00:00:00 2001 From: Danny Guinther Date: Sat, 27 Jun 2015 11:19:27 -0400 Subject: [PATCH] Hooks#add_event documentation fix --- lib/pry/hooks.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pry/hooks.rb b/lib/pry/hooks.rb index 41cf8ba2..b5e2e85c 100644 --- a/lib/pry/hooks.rb +++ b/lib/pry/hooks.rb @@ -59,7 +59,7 @@ class Pry end end - # Add a new hook to be executed for the `name` even. + # Add a new hook to be executed for the `event_name` event. # @param [Symbol] event_name The name of the event. # @param [Symbol] hook_name The name of the hook. # @param [#call] callable The callable.