@@ -28,27 +28,27 @@ * OFStream. If you override these methods without the _ prefix, you *WILL* * break caching, get broken results and seek to the wrong position! */ @interface OFSeekableStream: OFStream /** - * Seeks to the specified absolute offset. + * \brief Seeks to the specified absolute offset. * * \param offset The offset in bytes */ - (void)seekToOffset: (off_t)offset; /** - * Seeks to the specified offset, relative to the current location. + * \brief Seeks to the specified offset, relative to the current location. * * \param offset The offset relative to the current location * \return The absolute offset */ - (off_t)seekForwardWithOffset: (off_t)offset; /** - * Seeks to the specified offset, relative to the end of the stream. + * \brief Seeks to the specified offset, relative to the end of the stream. * * \param offset The offset relative to the end of the stream * \return The absolute offset */ - (off_t)seekToOffsetRelativeToEnd: (off_t)offset; @end