@@ -20,11 +20,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFData; -/*! +/** * @class OFMessagePackExtension \ * OFMessagePackExtension.h ObjFW/OFMessagePackExtension.h * * @brief A class for representing the MessagePack extension type. */ @@ -34,21 +34,21 @@ int8_t _type; OFData *_data; OF_RESERVE_IVARS(OFMessagePackExtension, 4) } -/*! +/** * @brief The MessagePack extension type. */ @property (readonly, nonatomic) int8_t type; -/*! +/** * @brief The data of the extension. */ @property (readonly, nonatomic) OFData *data; -/*! +/** * @brief Creates a new OFMessagePackRepresentation with the specified type and * data. * * @param type The MessagePack extension type * @param data The data for the extension @@ -57,11 +57,11 @@ + (instancetype)extensionWithType: (int8_t)type data: (OFData *)data; - (instancetype)init OF_UNAVAILABLE; -/*! +/** * @brief Initializes an already allocated OFMessagePackRepresentation with the * specified type and data. * * @param type The MessagePack extension type * @param data The data for the extension