@@ -14,12 +14,12 @@ * file. */ #import "OFException.h" -/** - * \brief An exception indicating that a mutation was detected during +/*! + * @brief An exception indicating that a mutation was detected during * enumeration. */ @interface OFEnumerationMutationException: OFException { id object; @@ -27,28 +27,28 @@ #ifdef OF_HAVE_PROPERTIES @property (readonly, retain, nonatomic) id object; #endif -/** - * \param class_ The class of the object which caused the exception - * \param object The object which was mutated during enumeration - * \return A new enumeration mutation exception +/*! + * @param class_ The class of the object which caused the exception + * @param object The object which was mutated during enumeration + * @return A new enumeration mutation exception */ + (instancetype)exceptionWithClass: (Class)class_ object: (id)object; -/** +/*! * Initializes an already allocated enumeration mutation exception. * - * \param class_ The class of the object which caused the exception - * \param object The object which was mutated during enumeration - * \return An initialized enumeration mutation exception + * @param class_ The class of the object which caused the exception + * @param object The object which was mutated during enumeration + * @return An initialized enumeration mutation exception */ - initWithClass: (Class)class_ object: (id)object; -/** - * \return The object which was mutated during enumeration +/*! + * @return The object which was mutated during enumeration */ - (id)object; @end