about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-14 21:27:58 +0100
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-14 21:27:58 +0100
commit1b09e9176fd9defecb91ebc735c383c6720d93d9 (patch)
tree1399297d3ef02228c852079e99eb298555d04ffd
parent53385908505cc1694b666a27c09492196c5d232b (diff)
doc(bs_bitmap_extend): adapt to new behavior
-rw-r--r--include/buchstabensuppe/bitmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/buchstabensuppe/bitmap.h b/include/buchstabensuppe/bitmap.h
index 41d3912..681dd90 100644
--- a/include/buchstabensuppe/bitmap.h
+++ b/include/buchstabensuppe/bitmap.h
@@ -65,9 +65,9 @@ void bs_bitmap_free(bs_bitmap_t *bitmap);
 /*!
  * @brief Increase the size of a bitmap
  *
- * Resizes the bitmap to a new size which must be bigger than
- * the old one on at least one axis. The newly initialized
- * value is then intialized with the given value.
+ * Resizes the bitmap to a new size, but will only increase
+ * its size. The newly allocated space is then intialized
+ * with the given value.
  */
 bool bs_bitmap_extend(bs_bitmap_t *bitmap, int new_width,
   int new_height, unsigned char initial_value);