Correct an example

svn path=/trunk/; revision=6812
This commit is contained in:
Matthias Clasen 2008-04-03 04:17:19 +00:00
parent b28e9afd69
commit 587b5986da
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-04-03 Matthias Clasen <mclasen@redhat.com>
Bug 525553 fix typo and nitpicking in GArray documentation
* glib/tmpl/arrays.sgml: Correct an index in an example
2008-03-30 Matthias Clasen <mclasen@redhat.com>
* gio/gio-sections.txt: Add g_file_query_file_type.

View File

@ -264,7 +264,7 @@ The return value is cast to the given type.
<programlisting>
EDayViewEvent *event;
/* This gets a pointer to the 3rd element in the array of EDayViewEvent
/* This gets a pointer to the 4th element in the array of EDayViewEvent
structs. */
event = &amp;g_array_index (events, EDayViewEvent, 3);
</programlisting>