Update wrong doc example. [ci skip]

This commit is contained in:
Michael Kessler 2011-09-30 12:13:50 +02:00
parent 5bdb56caa0
commit e9ddb1c110

View File

@ -7,17 +7,17 @@ module Guard
# #
# In each of these Guard methods you have to implement some work when you want to # In each of these Guard methods you have to implement some work when you want to
# support this kind of task. The return value of each Guard method is ignored, but # support this kind of task. The return value of each Guard method is ignored, but
# you can raise a `:task_has_failed` exception to indicate that your Guard method was # you can throw `:task_has_failed` to indicate that your Guard method was
# not successful. When a `:task_has_failed` exception is raised, successive guard tasks # not successful. When `:task_has_failed` is thrown, successive guard tasks
# can be aborted when the group has set the `:halt_on_fail` option. # can be aborted when the group has set the `:halt_on_fail` option.
# #
# @see Guard::Group # @see Guard::Group
# #
# @example Raise a :task_has_failed exception # @example Throw :task_has_failed
# #
# def run_all # def run_all
# if !runner.run(['all']) # if !runner.run(['all'])
# raise :task_has_failed # throw :task_has_failed
# end # end
# end # end
# #