# HG changeset patch # User Mike Becker # Date 1700779300 -3600 # Node ID 49ceea78fce7b7c413037c1956784a157efe805b # Parent 0b635553b86a43ba1ee28b43b9a9916fa1fe479b fix incorrect documentation of cxBufferEof() diff -r 0b635553b86a -r 49ceea78fce7 configure --- a/configure Thu Nov 23 23:35:51 2023 +0100 +++ b/configure Thu Nov 23 23:41:40 2023 +0100 @@ -440,7 +440,7 @@ cat >> "$TEMP_DIR/make.mk" << __EOF__ # library version -VERSION=3.0.0 +VERSION=3.0.1 LIBVERSION=4.0.0 LIBVERSION_MAJOR=4 diff -r 0b635553b86a -r 49ceea78fce7 make/project.xml --- a/make/project.xml Thu Nov 23 23:35:51 2023 +0100 +++ b/make/project.xml Thu Nov 23 23:41:40 2023 +0100 @@ -10,7 +10,7 @@ # library version -VERSION=3.0.0 +VERSION=3.0.1 LIBVERSION=4.0.0 LIBVERSION_MAJOR=4 diff -r 0b635553b86a -r 49ceea78fce7 src/cx/buffer.h --- a/src/cx/buffer.h Thu Nov 23 23:35:51 2023 +0100 +++ b/src/cx/buffer.h Thu Nov 23 23:41:40 2023 +0100 @@ -319,11 +319,11 @@ void cxBufferClear(CxBuffer *buffer); /** - * Tests, if the buffer position has exceeded the buffer capacity. + * Tests, if the buffer position has exceeded the buffer size. * * @param buffer the buffer to test * @return non-zero, if the current buffer position has exceeded the last - * available byte of the buffer. + * byte of the buffer's contents. */ __attribute__((__nonnull__)) int cxBufferEof(CxBuffer const *buffer);