diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 6be1a2b36..6cf23bbe1 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2003-08-05 Matthias Clasen + + * glib/tmpl/string_utils.sgml: Add note about in-place editing to g_strdelimit() doc. + (#118875, Thomas Vander Stichele) + 2003-07-30 Matthias Clasen * glib/tmpl/misc_utils.sgml: Move g_getenv() docs inline. diff --git a/docs/reference/glib/tmpl/string_utils.sgml b/docs/reference/glib/tmpl/string_utils.sgml index 4a198443d..f4ce4158f 100644 --- a/docs/reference/glib/tmpl/string_utils.sgml +++ b/docs/reference/glib/tmpl/string_utils.sgml @@ -745,7 +745,9 @@ Removes leading and trailing whitespace from a string. Converts any delimiter characters in @string to @new_delimiter. Any characters in @string which are found in @delimiters are changed -to the @new_delimiter character. +to the @new_delimiter character. Modifies @string in place, and returns +@string itself, not a copy. The return value is to allow nesting such as +g_ascii_strup (g_strdelimit (str, "abc", '?')). @string: the string to convert.