@@ -17,11 +17,11 @@ #import "OFPair.h" OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFMutablePair OFMutablePair.h ObjFW/OFMutablePair.h * * @brief A class for storing a pair of two objects. */ @interface OFMutablePair OF_GENERIC(FirstType, SecondType): @@ -32,21 +32,21 @@ #endif { OF_RESERVE_IVARS(OFMutablePair, 4) } -/*! +/** * @brief The first object of the pair. */ @property (readwrite, nonatomic, retain) FirstType firstObject; -/*! +/** * @brief The second object of the pair. */ @property (readwrite, nonatomic, retain) SecondType secondObject; -/*! +/** * @brief Converts the mutable pair to an immutable pair. */ - (void)makeImmutable; #if !defined(OF_HAVE_GENERICS) && !defined(DOXYGEN) # undef FirstType