@@ -18,11 +18,11 @@ #import "OFException.h" #import "OFLocking.h" OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFStillLockedException \ * OFStillLockedException.h ObjFW/OFStillLockedException.h * * @brief An exception indicating that a lock is still locked. */ @@ -29,24 +29,24 @@ @interface OFStillLockedException: OFException { id _lock; } -/*! +/** * @brief The lock which is still locked. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) id lock; -/*! +/** * @brief Creates a new, autoreleased still locked exception. * * @param lock The lock which is still locked * @return A new, autoreleased still locked exception */ + (instancetype)exceptionWithLock: (nullable id )lock; -/*! +/** * @brief Initializes an already allocated still locked exception. * * @param lock The lock which is still locked * @return An initialized still locked exception */