s/g_strtokenize/g_strsplit_set/ in docs.
authorSoeren Sandmann <sandmann@daimi.au.dk>
Sat, 24 Jul 2004 15:51:59 +0000 (15:51 +0000)
committerSøren Sandmann Pedersen <ssp@src.gnome.org>
Sat, 24 Jul 2004 15:51:59 +0000 (15:51 +0000)
Sat Jul 24 17:50:07 2004  Soeren Sandmann  <sandmann@daimi.au.dk>

* glib/gstrfuncs.c (g_strsplit_set):
s/g_strtokenize/g_strsplit_set/ in docs.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gstrfuncs.c

index fbb9178..f0413f5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jul 24 17:50:07 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/gstrfuncs.c (g_strsplit_set):
+       s/g_strtokenize/g_strsplit_set/ in docs.
+
 Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
 
        * tests/type-test.c (main): Actually test G_MAXSIZE with
index fbb9178..f0413f5 100644 (file)
@@ -1,3 +1,8 @@
+Sat Jul 24 17:50:07 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/gstrfuncs.c (g_strsplit_set):
+       s/g_strtokenize/g_strsplit_set/ in docs.
+
 Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
 
        * tests/type-test.c (main): Actually test G_MAXSIZE with
index fbb9178..f0413f5 100644 (file)
@@ -1,3 +1,8 @@
+Sat Jul 24 17:50:07 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/gstrfuncs.c (g_strsplit_set):
+       s/g_strtokenize/g_strsplit_set/ in docs.
+
 Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
 
        * tests/type-test.c (main): Actually test G_MAXSIZE with
index fbb9178..f0413f5 100644 (file)
@@ -1,3 +1,8 @@
+Sat Jul 24 17:50:07 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/gstrfuncs.c (g_strsplit_set):
+       s/g_strtokenize/g_strsplit_set/ in docs.
+
 Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
 
        * tests/type-test.c (main): Actually test G_MAXSIZE with
index fbb9178..f0413f5 100644 (file)
@@ -1,3 +1,8 @@
+Sat Jul 24 17:50:07 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/gstrfuncs.c (g_strsplit_set):
+       s/g_strtokenize/g_strsplit_set/ in docs.
+
 Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
 
        * tests/type-test.c (main): Actually test G_MAXSIZE with
index 5644519..e802a83 100644 (file)
@@ -2207,11 +2207,11 @@ g_strsplit (const gchar *string,
  * contain any of the characters in @delimiters. If @max_tokens is reached, the
  * remainder is appended to the last token.
  *
- * For example the result of g_strtokenize ("abc:def/ghi", ":/", -1) is a
+ * For example the result of g_strsplit_set ("abc:def/ghi", ":/", -1) is a
  * %NULL-terminated vector containing the three strings "abc", "def", 
  * and "ghi".
  *
- * The result if g_strtokenize (":def/ghi:", ":/", -1) is a %NULL-terminated
+ * The result if g_strsplit_set (":def/ghi:", ":/", -1) is a %NULL-terminated
  * vector containing the four strings "", "def", "ghi", and "".
  * 
  * As a special case, the result of splitting the empty string "" is an empty