Fix the description of g_string_assign. (#78728)
authorMatthias Clasen <matthiasc@src.gnome.org>
Sat, 20 Apr 2002 23:46:05 +0000 (23:46 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sat, 20 Apr 2002 23:46:05 +0000 (23:46 +0000)
* glib/tmpl/strings.sgml: Fix the description of g_string_assign. (#78728)

docs/reference/ChangeLog
docs/reference/glib/tmpl/strings.sgml

index 8546e1d..d337b6e 100644 (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>
 
        * glib/tmpl/error_reporting.sgml:
index 0e34ac9..7df271b 100644 (file)
@@ -67,13 +67,13 @@ don't want it to be reallocated too often.
 
 <!-- ##### FUNCTION g_string_assign ##### -->
 <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
 you do not have to worry about having enough space to copy the string.
 </para>
 
 @string: the destination #GString. Its current contents are destroyed.
-@rval: the source #GString.
+@val: the string to copy into @string.
 @Returns: the destination #GString.