From: Soeren Sandmann Date: Sat, 24 Jul 2004 15:51:59 +0000 (+0000) Subject: s/g_strtokenize/g_strsplit_set/ in docs. X-Git-Tag: GLIB_2_5_1~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=653c662f0f2712796991a2764c79b11e7ceb1ccb;p=platform%2Fupstream%2Fglib.git s/g_strtokenize/g_strsplit_set/ in docs. Sat Jul 24 17:50:07 2004 Soeren Sandmann * glib/gstrfuncs.c (g_strsplit_set): s/g_strtokenize/g_strsplit_set/ in docs. --- diff --git a/ChangeLog b/ChangeLog index fbb91787f..f0413f596 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Jul 24 17:50:07 2004 Soeren Sandmann + + * glib/gstrfuncs.c (g_strsplit_set): + s/g_strtokenize/g_strsplit_set/ in docs. + Fri Jul 23 10:37:50 2004 Matthias Clasen * tests/type-test.c (main): Actually test G_MAXSIZE with diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index fbb91787f..f0413f596 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Sat Jul 24 17:50:07 2004 Soeren Sandmann + + * glib/gstrfuncs.c (g_strsplit_set): + s/g_strtokenize/g_strsplit_set/ in docs. + Fri Jul 23 10:37:50 2004 Matthias Clasen * tests/type-test.c (main): Actually test G_MAXSIZE with diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index fbb91787f..f0413f596 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +Sat Jul 24 17:50:07 2004 Soeren Sandmann + + * glib/gstrfuncs.c (g_strsplit_set): + s/g_strtokenize/g_strsplit_set/ in docs. + Fri Jul 23 10:37:50 2004 Matthias Clasen * tests/type-test.c (main): Actually test G_MAXSIZE with diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index fbb91787f..f0413f596 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Sat Jul 24 17:50:07 2004 Soeren Sandmann + + * glib/gstrfuncs.c (g_strsplit_set): + s/g_strtokenize/g_strsplit_set/ in docs. + Fri Jul 23 10:37:50 2004 Matthias Clasen * tests/type-test.c (main): Actually test G_MAXSIZE with diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index fbb91787f..f0413f596 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Sat Jul 24 17:50:07 2004 Soeren Sandmann + + * glib/gstrfuncs.c (g_strsplit_set): + s/g_strtokenize/g_strsplit_set/ in docs. + Fri Jul 23 10:37:50 2004 Matthias Clasen * tests/type-test.c (main): Actually test G_MAXSIZE with diff --git a/glib/gstrfuncs.c b/glib/gstrfuncs.c index 564451998..e802a8344 100644 --- a/glib/gstrfuncs.c +++ b/glib/gstrfuncs.c @@ -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