@@ -155,12 +155,12 @@ * called again with the same buffer and maximum length when more * data has been received. If you want the next method in the * queue to handle the data received next, you need to return * false from the method. * @param selector The selector to call on the target. The signature must be - * bool (OFStream *stream, void *buffer, size_t size, - * OFException *exception). + * `bool (OFStream *stream, void *buffer, size_t size, + * OFException *exception)`. */ - (void)asyncReadIntoBuffer: (void*)buffer length: (size_t)length target: (id)target selector: (SEL)selector; @@ -185,12 +185,12 @@ * called again with the same buffer and exact length when more * data has been received. If you want the next method in the * queue to handle the data received next, you need to return * false from the method. * @param selector The selector to call on the target. The signature must be - * bool (OFStream *stream, void *buffer, size_t size, - * OFException *exception). + * `bool (OFStream *stream, void *buffer, size_t size, + * OFException *exception)`. */ - (void)asyncReadIntoBuffer: (void*)buffer exactLength: (size_t)length target: (id)target selector: (SEL)selector; @@ -608,12 +608,12 @@ * been received. If the method returns true, it will be called * again when the next line has been received. If you want the * next method in the queue to handle the next line, you need to * return false from the method * @param selector The selector to call on the target. The signature must be - * bool (OFStream *stream, OFString *line, - * OFException *exception). + * `bool (OFStream *stream, OFString *line, + * OFException *exception)`. */ - (void)asyncReadLineWithTarget: (id)target selector: (SEL)selector; /*! @@ -628,12 +628,12 @@ * been received. If the method returns true, it will be called * again when the next line has been received. If you want the * next method in the queue to handle the next line, you need to * return false from the method * @param selector The selector to call on the target. The signature must be - * bool (OFStream *stream, OFString *line, - * OFException *exception). + * `bool (OFStream *stream, OFString *line, + * OFException *exception)`. */ - (void)asyncReadLineWithEncoding: (of_string_encoding_t)encoding target: (id)target selector: (SEL)selector;