mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-20 15:48:54 +02:00
docs: various small fixes
For the GPtrArray example, several variables declared on the same line is harder to read and to work with (to move, remove or comment a single variable declaration).
This commit is contained in:
@@ -816,9 +816,11 @@ g_array_maybe_expand (GRealArray *array,
|
||||
* An example using a #GPtrArray:
|
||||
* |[<!-- language="C" -->
|
||||
* GPtrArray *array;
|
||||
* gchar *string1 = "one", *string2 = "two", *string3 = "three";
|
||||
* gchar *string1 = "one";
|
||||
* gchar *string2 = "two";
|
||||
* gchar *string3 = "three";
|
||||
*
|
||||
* gparray = g_ptr_array_new ();
|
||||
* array = g_ptr_array_new ();
|
||||
* g_ptr_array_add (array, (gpointer) string1);
|
||||
* g_ptr_array_add (array, (gpointer) string2);
|
||||
* g_ptr_array_add (array, (gpointer) string3);
|
||||
|
Reference in New Issue
Block a user