From 3162e25671f2838fddc52671435cdefe654b350a Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 6 Jul 2020 03:41:12 +0200 Subject: bitset: Fix typo: gtk_bitset_slice() => gtk_bitset_splice() --- gtk/gtkbitset.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gtk/gtkbitset.c') diff --git a/gtk/gtkbitset.c b/gtk/gtkbitset.c index 1ee80500c9..6f29e59757 100644 --- a/gtk/gtkbitset.c +++ b/gtk/gtkbitset.c @@ -707,7 +707,7 @@ gtk_bitset_shift_right (GtkBitset *self, } /** - * gtk_bitset_slice: + * gtk_bitset_splice: * @self: a #GtkBitset * @position: position at which to slice * @removed: number of values to remove @@ -725,10 +725,10 @@ gtk_bitset_shift_right (GtkBitset *self, * up space that can then be filled. **/ void -gtk_bitset_slice (GtkBitset *self, - guint position, - guint removed, - guint added) +gtk_bitset_splice (GtkBitset *self, + guint position, + guint removed, + guint added) { g_return_if_fail (self != NULL); /* overflow */ -- cgit v1.2.1