mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-24 14:36:13 +01: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:
parent
fdc5b8f744
commit
25990eb2b6
@ -28,7 +28,7 @@
|
||||
* implements methods for getting information that all files should
|
||||
* contain, and allows for manipulation of extended attributes.
|
||||
*
|
||||
* See [GFileAttribute][gio-GFileAttribute for more information on how
|
||||
* See [GFileAttribute][gio-GFileAttribute] for more information on how
|
||||
* GIO handles file attributes.
|
||||
*
|
||||
* To obtain a #GFileInfo for a #GFile, use g_file_query_info() (or its
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user