aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/actionable_error.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/actionable_error.rb')
-rw-r--r--activesupport/lib/active_support/actionable_error.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/actionable_error.rb b/activesupport/lib/active_support/actionable_error.rb
index 88a3eaa514..8adf40cc3d 100644
--- a/activesupport/lib/active_support/actionable_error.rb
+++ b/activesupport/lib/active_support/actionable_error.rb
@@ -6,10 +6,8 @@ module ActiveSupport
# Actionable errors let's you define actions to resolve an error.
#
# To make an error actionable, include the <tt>ActiveSupport::ActionableError</tt>
- # module and invoke the +action+ class macro to define the action.
- #
- # An action needs a name and a procedure to execute. The name can be shown by
- # the action dispatching mechanism.
+ # module and invoke the +action+ class macro to define the action. An action
+ # needs a name and a block to execute.
module ActionableError
extend Concern