@@ -21,28 +21,28 @@ #import "OFSerialization.h" OF_ASSUME_NONNULL_BEGIN typedef struct of_list_object_t of_list_object_t; -/*! +/** * @struct of_list_object_t OFList.h ObjFW/OFList.h * * @brief A list object. * * A struct that contains a pointer to the next list object, the previous list * object and the object. */ struct of_list_object_t { - /*! A pointer to the next list object in the list */ + /** A pointer to the next list object in the list */ of_list_object_t *_Nullable next; - /*! A pointer to the previous list object in the list */ + /** A pointer to the previous list object in the list */ of_list_object_t *_Nullable previous; - /*! The object for the list object */ + /** The object for the list object */ id __unsafe_unretained object; }; -/*! +/** * @class OFList OFList.h ObjFW/OFList.h * * @brief A class which provides easy to use double-linked lists. */ @interface OFList OF_GENERIC(ObjectType): OFObject