From 36484623dc1bdb23b627ffec3681871488416e67 Mon Sep 17 00:00:00 2001 From: John Britton Date: Thu, 23 Feb 2012 02:22:29 +0100 Subject: [PATCH] fixed naming error in comments, should be Resque::Job::DontPerform (missing "::Job") --- lib/resque/job.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/resque/job.rb b/lib/resque/job.rb index 63bc6b2ac..d4a84761f 100644 --- a/lib/resque/job.rb +++ b/lib/resque/job.rb @@ -111,7 +111,7 @@ def perform begin # Execute before_perform hook. Abort the job gracefully if - # Resque::DontPerform is raised. + # Resque::Job::DontPerform is raised. begin before_hooks.each do |hook| job.send(hook, *job_args)