@@ -19,11 +19,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFXMLParser; -/*! +/** * @class OFUnboundPrefixException \ * OFUnboundPrefixException.h ObjFW/OFUnboundPrefixException.h * * @brief An exception indicating an attempt to use an unbound prefix. */ @@ -31,23 +31,23 @@ { OFString *_prefix; OFXMLParser *_parser; } -/*! +/** * @brief The unbound prefix. */ @property (readonly, nonatomic) OFString *prefix; -/*! +/** * @brief The parser which encountered the unbound prefix. */ @property (readonly, nonatomic) OFXMLParser *parser; + (instancetype)exception OF_UNAVAILABLE; -/*! +/** * @brief Creates a new, autoreleased unbound prefix exception. * * @param prefix The prefix which is unbound * @param parser The parser which encountered the unbound prefix * @return A new, autoreleased unbound prefix exception @@ -55,11 +55,11 @@ + (instancetype)exceptionWithPrefix: (OFString *)prefix parser: (OFXMLParser *)parser; - (instancetype)init OF_UNAVAILABLE; -/*! +/** * @brief Initializes an already allocated unbound prefix exception. * * @param prefix The prefix which is unbound * @param parser The parser which encountered the unbound prefix * @return An initialized unbound prefix exception