Index: src/OFObject.h ================================================================== --- src/OFObject.h +++ src/OFObject.h @@ -879,11 +879,11 @@ /*! * @brief Handles messages which are not understood by the receiver. * * @warning If you override this method, you must make sure that it never - * returns. + * returns! * * @param selector The selector not understood by the receiver */ - (void)doesNotRecognizeSelector: (SEL)selector OF_NO_RETURN; @end Index: src/OFSeekableStream.h ================================================================== --- src/OFSeekableStream.h +++ src/OFSeekableStream.h @@ -68,12 +68,12 @@ /*! * @brief Seek the stream on the lowlevel. * * @warning Do not call this directly! * - * Override this with this method with your actual seek implementation when - * subclassing! + * @note Override this method with your actual seek implementation when + * subclassing! * * @param offset The offset to seek to * @param whence From where to seek.@n * Possible values are: * Value | Description Index: src/OFStream.h ================================================================== --- src/OFStream.h +++ src/OFStream.h @@ -1127,11 +1127,12 @@ /*! * @brief Performs a lowlevel read. * * @warning Do not call this directly! * - * Override this method with your actual read implementation when subclassing! + * @note Override this method with your actual read implementation when + * subclassing! * * @param buffer The buffer for the data to read * @param length The length of the buffer * @return The number of bytes read */ @@ -1141,11 +1142,12 @@ /*! * @brief Performs a lowlevel write. * * @warning Do not call this directly! * - * Override this method with your actual write implementation when subclassing! + * @note Override this method with your actual write implementation when + * subclassing! * * @param buffer The buffer with the data to write * @param length The length of the data to write */ - (void)lowlevelWriteBuffer: (const void*)buffer @@ -1154,14 +1156,14 @@ /*! * @brief Returns whether the lowlevel is at the end of the stream. * * @warning Do not call this directly! * - * Override this method with your actual end of stream checking implementation - * when subclassing! + * @note Override this method with your actual end of stream checking + * implementation when subclassing! * * @return Whether the lowlevel is at the end of the stream */ - (bool)lowlevelIsAtEndOfStream; @end OF_ASSUME_NONNULL_END