@@ -21,11 +21,11 @@ # error No sockets available! #endif OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFAlreadyConnectedException \ * OFAlreadyConnectedException.h ObjFW/OFAlreadyConnectedException.h * * @brief An exception indicating an attempt to connect or bind an already * connected or bound socket. @@ -33,28 +33,28 @@ @interface OFAlreadyConnectedException: OFException { id _socket; } -/*! +/** * @brief The socket which is already connected. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) id socket; -/*! +/** * @brief Creates a new, autoreleased already connected exception. * * @param socket The socket which is already connected * @return A new, autoreleased already connected exception */ + (instancetype)exceptionWithSocket: (nullable id)socket; -/*! +/** * @brief Initializes an already allocated already connected exception. * * @param socket The socket which is already connected * @return An initialized already connected exception */ - (instancetype)initWithSocket: (nullable id)socket OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END