docs: various small fixes
authorSébastien Wilmet <swilmet@gnome.org>
Tue, 9 Sep 2014 19:20:34 +0000 (21:20 +0200)
committerSébastien Wilmet <swilmet@gnome.org>
Sat, 13 Sep 2014 14:59:31 +0000 (16:59 +0200)
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).

gio/gfileinfo.c
glib/garray.c

index f2ffe64..0cbf988 100644 (file)
@@ -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
index f81cf0c..14e046f 100644 (file)
@@ -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);