summaryrefslogtreecommitdiff
path: root/telepathy-glib/intset.c
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2009-02-04 13:11:28 +0000
committerWill Thompson <will.thompson@collabora.co.uk>2009-02-04 13:11:28 +0000
commit42e27a939c5aab6e1f8c10a84902a076b33e1c89 (patch)
tree1eb71e21cb7e09507efab0a5cef7d7b8ec8ed469 /telepathy-glib/intset.c
parent2b97fb6741b008cf220fa6549f4dcae19cb2fa08 (diff)
downloadtelepathy-glib-42e27a939c5aab6e1f8c10a84902a076b33e1c89.tar.gz
_new_containing is a better name than _new_singleton
Diffstat (limited to 'telepathy-glib/intset.c')
-rw-r--r--telepathy-glib/intset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/intset.c b/telepathy-glib/intset.c
index b1612af96..dc8957306 100644
--- a/telepathy-glib/intset.c
+++ b/telepathy-glib/intset.c
@@ -94,7 +94,7 @@ tp_intset_new ()
}
/**
- * tp_intset_new_singleton:
+ * tp_intset_new_containing:
* @element: integer to add to a new set
*
* Allocate a new integer set containing the given integer.
@@ -105,7 +105,7 @@ tp_intset_new ()
* @since 0.7.UNRELEASED
*/
TpIntSet *
-tp_intset_new_singleton (guint element)
+tp_intset_new_containing (guint element)
{
TpIntSet *ret = tp_intset_sized_new (element + 1);