From: Pavel Charvat Date: Thu, 13 Nov 2008 10:15:01 +0000 (+0100) Subject: Doc: Small fix in fastbufs' doc. X-Git-Tag: holmes-import~153 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=8d24eb9bb3db63ffc5056e14aad53c484e45dac3;p=libucw.git Doc: Small fix in fastbufs' doc. --- diff --git a/ucw/fastbuf.h b/ucw/fastbuf.h index 04f765f7..cc10e0eb 100644 --- a/ucw/fastbuf.h +++ b/ucw/fastbuf.h @@ -93,7 +93,7 @@ * - `buffer <= bstop <= bufend` and `buffer <= bptr <= bufend`. * - `pos` should be the real position in the file corresponding to the location of `bstop` in the buffer. * It can be modified by any back-end's callback, but the position of `bptr` (`pos + (bptr - bstop)`) - * must stay unchanged (except the `seek` callback of course). + * must stay unchanged after `refill` or `spout`. * - Failed callbacks (except `close`) should use @bthrow(). * - Any callback pointer may be NULL in case the callback is not implemented. * - Callbacks can change not only `bptr` and `bstop`, but also the location and size of the buffer;