Fix typo in g_try_new0 docs (#505195, Felix Riemann).
authorMathias Hasselmann <hasselmm@src.gnome.org>
Mon, 24 Dec 2007 08:14:33 +0000 (08:14 +0000)
committerMathias Hasselmann <hasselmm@src.gnome.org>
Mon, 24 Dec 2007 08:14:33 +0000 (08:14 +0000)
* docs/reference/glib/tmpl/memory.sgml: Reference
n_structs, instead of non-existant n_counts argument.

svn path=/trunk/; revision=6196

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

index 4dce126..a363f00 100644 (file)
@@ -1,3 +1,10 @@
+2007-12-24  Mathias Hasselmann  <mathias@openismus.com>
+
+       Fix typo in g_try_new0 docs (#505195, Felix Riemann).
+
+       * docs/reference/glib/tmpl/memory.sgml: Reference
+       n_structs, instead of non-existant n_counts argument.
+
 2007-12-22  Matthias Clasen  <mclasen@redhat.com>
 
        * gobject/tmpl/gtypemodule.sgml: Fix a typo
index 904bd8f..90df4f8 100644 (file)
@@ -101,7 +101,7 @@ Attempts to allocate @n_structs elements of type @struct_type, initialized
 to 0's, and returns %NULL on failure. Contrast with g_new0(), which aborts 
 the program on failure.
 The returned pointer is cast to a pointer to the given type.
-If @n_counts is 0 it returns %NULL.
+The function returns %NULL when @n_structs is 0.
 </para>
 
 @struct_type: the type of the elements to allocate