@@ -16,12 +16,12 @@ #import "OFObject.h" @class OFString; -/** - * \brief An exception indicating an object could not be allocated. +/*! + * @brief An exception indicating an object could not be allocated. * * This exception is preallocated, as if there's no memory, no exception can * be allocated of course. That's why you shouldn't and even can't deallocate * it. * @@ -29,10 +29,10 @@ * It does not know for which class allocation failed and it should not be * handled like other exceptions, as the exception handling code is not * allowed to allocate ANY memory. */ @interface OFAllocFailedException: OFObject -/** - * \return A description of the exception +/*! + * @return A description of the exception */ - (OFString*)description; @end