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 8546e1d9070d18e955a5bd012c32a5360fdfa4c8..d337b6e3c6ea9cee38dc0d45e6e239438450665a 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 0e34ac9cd5bce119184f6159e8ff6bf77cc6fc24..7df271b196a36d6d83156ed534caa3aaf3e561fd 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.