summaryrefslogtreecommitdiff
path: root/gtk/gtkbitset.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-07-16 20:27:00 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-07-16 20:28:21 -0400
commitb9e8935037fac6a99fba2bb449ae656dabb5fee7 (patch)
treea120aa0a5872758657e864b25682a47e1e4464a1 /gtk/gtkbitset.c
parent5f33f4ae8ed5582afb5aead418c9a51705f4a023 (diff)
downloadgtk+-b9e8935037fac6a99fba2bb449ae656dabb5fee7.tar.gz
docs: Document GtkBitsetIter
Diffstat (limited to 'gtk/gtkbitset.c')
-rw-r--r--gtk/gtkbitset.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gtk/gtkbitset.c b/gtk/gtkbitset.c
index 6f29e59757..b4d8abb113 100644
--- a/gtk/gtkbitset.c
+++ b/gtk/gtkbitset.c
@@ -27,20 +27,19 @@
* SECTION:gtkbitset
* @title: GtkBitset
* @short_description: Sets of integers
- * @see_also: GtkSelectionModel
+ * @see_also: #GtkSelectionModel
*
* #GtkBitset is a data structure for representing a set of unsigned integers.
* Another name for this data structure is "bitmap".
*
- * This version is based on [roaring bitmaps](https://roaringbitmap.org/).
+ * The current implemenation is based on [roaring bitmaps](https://roaringbitmap.org/).
*
* A bitset allows adding a set of integers and provides support for set operations
* like unions, intersections and checks for equality or if a value is contained
* in the set. #GtkBitset also contains various functions to query metadata about
* the bitset, such as the minimum or maximum values or its size.
*
- * The fastest way to iterate values in a bitset is #GtkBitsetIter which allows
- * quick iteration of all the values in a bitset.
+ * The fastest way to iterate values in a bitset is #GtkBitsetIter.
*
* The main use case for #GtkBitset is implementing complex selections for
* #GtkSelectionModel.