Fix style issues in Mutant::Mutator

This commit is contained in:
Markus Schirp 2013-07-28 19:07:38 +02:00
parent 2710a31d70
commit ddd669c2c2

View file

@ -135,17 +135,13 @@ module Mutant
# Call block until it generates a mutation # Call block until it generates a mutation
# #
# The primary use of this method is to give the random generated object
# a nice interface for retring generation when generation accidentally generated the
# input
#
# @yield # @yield
# Execute block until object is generated where new?(object) returns true # Execute block until object is generated where new?(object) returns true
# #
# @return [self] # @return [self]
# #
# @raise [RuntimeError] # @raise [RuntimeError]
# raises RuntimeError in case no new ast node can be generated after MAX_TRIES. # raises RuntimeError when no new node can be generated after MAX_TRIES.
# #
# @api private # @api private
# #