Doc: Fix g_auto and g_autoptr typo
authorXavier Claessens <xavier.claessens@collabora.com>
Mon, 2 Feb 2015 14:46:31 +0000 (09:46 -0500)
committerRyan Lortie <desrt@desrt.ca>
Wed, 4 Feb 2015 14:07:15 +0000 (15:07 +0100)
glib/docs.c

index d681165..f7a0bf2 100644 (file)
 
 /**
  * g_auto:
- * @typename: a supported variable type
+ * @TypeName: a supported variable type
  *
  * Helper to declare a variable with automatic cleanup.
  *
 
 /**
  * g_autoptr:
- * @typename: a supported variable type
+ * @TypeName: a supported variable type
  *
  * Helper to declare a pointer variable with automatic cleanup.
  *
  * are intended to be portable to those compilers.
  *
  * This is meant to be used to declare pointers to types with cleanup
- * functions.  The type of the variable is a pointer to @typename.  You
+ * functions.  The type of the variable is a pointer to @TypeName.  You
  * must not add your own '*'.
  *
  * This macro can be used to avoid having to do explicit cleanups of