@@ -20,11 +20,11 @@ #import "mutex.h" OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFRecursiveMutex OFRecursiveMutex.h ObjFW/OFRecursiveMutex.h * * @brief A class for creating mutual exclusions which can be entered * recursively. */ @@ -34,14 +34,14 @@ of_rmutex_t _rmutex; bool _initialized; OFString *_Nullable _name; } -/*! +/** * @brief Creates a new recursive mutex. * * @return A new autoreleased recursive mutex. */ + (instancetype)mutex; @end OF_ASSUME_NONNULL_END