@@ -23,11 +23,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFCondition; -/*! +/** * @class OFConditionStillWaitingException \ * OFConditionStillWaitingException.h \ * ObjFW/OFConditionStillWaitingException.h * * @brief An exception indicating that a thread is still waiting for a @@ -36,24 +36,24 @@ @interface OFConditionStillWaitingException: OFException { OFCondition *_condition; } -/*! +/** * @brief The condition for which is still being waited. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFCondition *condition; -/*! +/** * @brief Creates a new, autoreleased condition still waiting exception. * * @param condition The condition for which is still being waited * @return A new, autoreleased condition still waiting exception */ + (instancetype)exceptionWithCondition: (nullable OFCondition *)condition; -/*! +/** * @brief Initializes an already allocated condition still waiting exception. * * @param condition The condition for which is still being waited * @return An initialized condition still waiting exception */