Fix the description of g_string_assign. (#78728)

* glib/tmpl/strings.sgml: Fix the description of g_string_assign. (#78728)
This commit is contained in:
Matthias Clasen 2002-04-20 23:46:05 +00:00
parent 00bc4e28b8
commit 031fb85282
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-04-21 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/strings.sgml: Fix the description of g_string_assign. (#78728)
2002-04-18 Matthias Clasen <maclas@gmx.de> 2002-04-18 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/error_reporting.sgml: * glib/tmpl/error_reporting.sgml:

View File

@ -67,13 +67,13 @@ don't want it to be reallocated too often.
<!-- ##### FUNCTION g_string_assign ##### --> <!-- ##### FUNCTION g_string_assign ##### -->
<para> <para>
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 <function>strcpy()</function> function, except that contents. It is rather like the standard <function>strcpy()</function> function, except that
you do not have to worry about having enough space to copy the string. you do not have to worry about having enough space to copy the string.
</para> </para>
@string: the destination #GString. Its current contents are destroyed. @string: the destination #GString. Its current contents are destroyed.
@rval: the source #GString. @val: the string to copy into @string.
@Returns: the destination #GString. @Returns: the destination #GString.