fix incorrect documentation of cxBufferEof()

Thu, 23 Nov 2023 23:41:40 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 23 Nov 2023 23:41:40 +0100
changeset 757
49ceea78fce7
parent 756
0b635553b86a
child 758
6cd62ce7e353

fix incorrect documentation of cxBufferEof()

configure file | annotate | diff | comparison | revisions
make/project.xml file | annotate | diff | comparison | revisions
src/cx/buffer.h file | annotate | diff | comparison | revisions
--- 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
 
--- 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 @@
 	<dependency>
 		<make>
 # library version
-VERSION=3.0.0
+VERSION=3.0.1
 LIBVERSION=4.0.0
 LIBVERSION_MAJOR=4
 
--- 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);

mercurial