@@ -20,11 +20,11 @@ #import "mutex.h" OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFMutex OFMutex.h ObjFW/OFMutex.h * * @brief A class for creating mutual exclusions. */ @interface OFMutex: OFObject @@ -33,14 +33,14 @@ bool _initialized; OFString *_Nullable _name; OF_RESERVE_IVARS(OFMutex, 4) } -/*! +/** * @brief Creates a new mutex. * * @return A new autoreleased mutex. */ + (instancetype)mutex; @end OF_ASSUME_NONNULL_END