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