diff options
author | Benjamin Otte <otte@redhat.com> | 2020-07-06 03:41:12 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-07-06 03:42:43 +0200 |
commit | 3162e25671f2838fddc52671435cdefe654b350a (patch) | |
tree | a72008f422426d869ac2e808a8280fa2528388e3 /gtk/gtkbitset.c | |
parent | 3d931b4fe26e7f39470b370bef4fd3710421cc06 (diff) | |
download | gtk+-3162e25671f2838fddc52671435cdefe654b350a.tar.gz |
bitset: Fix typo: gtk_bitset_slice() => gtk_bitset_splice()
Diffstat (limited to 'gtk/gtkbitset.c')
-rw-r--r-- | gtk/gtkbitset.c | 10 |
1 files changed, 5 insertions, 5 deletions
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 */ |