@@ -281,13 +281,13 @@ * @brief Asynchronously reads *at most* size bytes from the stream into a * buffer. * * On network streams, this might read less than the specified number of bytes. * If you want to read exactly the specified number of bytes, use - * @ref asyncReadIntoBuffer:exactLength:target:selector:context:. Note that a - * read can even return 0 bytes - this does not necessarily mean that the - * stream ended, so you still need to check @ref atEndOfStream. + * @ref asyncReadIntoBuffer:exactLength:. Note that a read can even return 0 + * bytes - this does not necessarily mean that the stream ended, so you still + * need to check @ref atEndOfStream. * * @note The stream must conform to @ref OFReadyForReadingObserving in order * for this to work! * * @param buffer The buffer into which the data is read. @@ -302,13 +302,13 @@ * @brief Asynchronously reads *at most* size bytes from the stream into a * buffer. * * On network streams, this might read less than the specified number of bytes. * If you want to read exactly the specified number of bytes, use - * @ref asyncReadIntoBuffer:exactLength:target:selector:context:. Note that a - * read can even return 0 bytes - this does not necessarily mean that the - * stream ended, so you still need to check @ref atEndOfStream. + * @ref asyncReadIntoBuffer:exactLength:. Note that a read can even return 0 + * bytes - this does not necessarily mean that the stream ended, so you still + * need to check @ref atEndOfStream. * * @note The stream must conform to @ref OFReadyForReadingObserving in order * for this to work! * * @param buffer The buffer into which the data is read. @@ -323,14 +323,14 @@ /*! * @brief Asynchronously reads exactly the specified length bytes from the * stream into a buffer. * - * Unlike @ref asyncReadIntoBuffer:length:target:selector:context:, this method - * does not call the method when less than the specified length has been read - - * instead, it waits until it got exactly the specified length, the stream has - * ended or an exception occurred. + * Unlike @ref asyncReadIntoBuffer:length:, this method does not call the + * method when less than the specified length has been read - instead, it waits + * until it got exactly the specified length, the stream has ended or an + * exception occurred. * * @note The stream must conform to @ref OFReadyForReadingObserving in order * for this to work! * * @param buffer The buffer into which the data is read @@ -342,14 +342,14 @@ /*! * @brief Asynchronously reads exactly the specified length bytes from the * stream into a buffer. * - * Unlike @ref asyncReadIntoBuffer:length:target:selector:context:, this method - * does not call the method when less than the specified length has been read - - * instead, it waits until it got exactly the specified length, the stream has - * ended or an exception occurred. + * Unlike @ref asyncReadIntoBuffer:length:, this method does not call the + * method when less than the specified length has been read - instead, it waits + * until it got exactly the specified length, the stream has ended or an + * exception occurred. * * @note The stream must conform to @ref OFReadyForReadingObserving in order * for this to work! * * @param buffer The buffer into which the data is read