From: Matthias Clasen Date: Sat, 20 Apr 2002 23:46:05 +0000 (+0000) Subject: Fix the description of g_string_assign. (#78728) X-Git-Tag: R_2_0_core~121 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=031fb852828a59afe7077bfc6ffa4a40e5374816;p=platform%2Fupstream%2Fglib.git Fix the description of g_string_assign. (#78728) * glib/tmpl/strings.sgml: Fix the description of g_string_assign. (#78728) --- diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 8546e1d..d337b6e 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,7 @@ +2002-04-21 Matthias Clasen + + * glib/tmpl/strings.sgml: Fix the description of g_string_assign. (#78728) + 2002-04-18 Matthias Clasen * glib/tmpl/error_reporting.sgml: diff --git a/docs/reference/glib/tmpl/strings.sgml b/docs/reference/glib/tmpl/strings.sgml index 0e34ac9..7df271b 100644 --- a/docs/reference/glib/tmpl/strings.sgml +++ b/docs/reference/glib/tmpl/strings.sgml @@ -67,13 +67,13 @@ don't want it to be reallocated too often. -Copies the characters from one #GString into another, destroying any previous +Copies the characters from a string into a #GString, destroying any previous contents. It is rather like the standard strcpy() function, except that you do not have to worry about having enough space to copy the string. @string: the destination #GString. Its current contents are destroyed. -@rval: the source #GString. +@val: the string to copy into @string. @Returns: the destination #GString.