@@ -23,11 +23,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFThread; -/*! +/** * @class OFThreadStillRunningException \ * OFThreadStillRunningException.h ObjFW/OFThreadStillRunningException.h * * @brief An exception indicating that a thread is still running. */ @@ -34,24 +34,24 @@ @interface OFThreadStillRunningException: OFException { OFThread *_thread; } -/*! +/** * @brief The thread which is still running. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFThread *thread; -/*! +/** * @brief Creates a new, autoreleased thread still running exception. * * @param thread The thread which is still running * @return A new, autoreleased thread still running exception */ + (instancetype)exceptionWithThread: (nullable OFThread *)thread; -/*! +/** * @brief Initializes an already allocated thread still running exception. * * @param thread The thread which is still running * @return An initialized thread still running exception */