s/g_strtokenize/g_strsplit_set/ in docs.

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.
This commit is contained in:
Soeren Sandmann 2004-07-24 15:51:59 +00:00 committed by Søren Sandmann Pedersen
parent f5a8ae228a
commit 653c662f0f
6 changed files with 27 additions and 2 deletions

View 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

View 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

View 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

View 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

View 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

View 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