Index: src/OFSeekableStream.h ================================================================== --- src/OFSeekableStream.h +++ src/OFSeekableStream.h @@ -28,15 +28,15 @@ /** * \brief A stream that supports seeking. * * \note If you want to subclass this, override lowlevelSeekToOffset:, * lowlevelSeekForwardWithOffset: and lowlevelSeekToOffsetRelativeToEnd:, - * but nothing else. Those are not defined in the headers, but do the - * actual work. OFSeekableStream uses those and makes them work together - * with the caching of OFStream. If you override these methods without - * the lowlevel prefix, you will break caching, get broken results - * and seek to the wrong position! + * but nothing else, as they do the actual work. OFSeekableStream uses + * those and makes them work together with the caching of OFStream. + * If you override these methods without the lowlevel prefix, you + * will break caching, get broken results and seek to the wrong + * position! */ @interface OFSeekableStream: OFStream /** * \brief Seeks to the specified absolute offset. *