Fix documentation for return values.
authorStefan Kost <stefkost@src.gnome.org>
Sat, 21 Jun 2008 12:24:56 +0000 (12:24 +0000)
committerStefan Kost <stefkost@src.gnome.org>
Sat, 21 Jun 2008 12:24:56 +0000 (12:24 +0000)
* gobject/genums.h:
  Fix documentation for return values.

svn path=/trunk/; revision=7070

ChangeLog
gobject/genums.h

index 2c228eb..70222c7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2008-06-21  Stefan Kost  <ensonic@users.sf.net>
 
+       * gobject/genums.h:
+         Fix documentation for return values.
+
+2008-06-21  Stefan Kost  <ensonic@users.sf.net>
+
        * docs/reference/gobject/tmpl/gclosure.sgml:
        * gobject/gboxed.h:
        * gobject/gclosure.c:
index c8382a2..1e872ba 100644 (file)
@@ -32,7 +32,9 @@ G_BEGIN_DECLS
  * G_TYPE_IS_ENUM:
  * @type: a #GType ID.
  * 
- * Returns: whether @type "is a" %G_TYPE_ENUM.
+ * Checks whether @type "is a" %G_TYPE_ENUM.
+ *
+ * Returns: %TRUE if @type "is a" %G_TYPE_ENUM.
  */
 #define G_TYPE_IS_ENUM(type)          (G_TYPE_FUNDAMENTAL (type) == G_TYPE_ENUM)
 /**
@@ -54,14 +56,18 @@ G_BEGIN_DECLS
  * G_ENUM_CLASS_TYPE:
  * @class: a #GEnumClass
  * 
- * Returns: the type identifier from a given #GEnumClass structure.
+ * Get the type identifier from a given #GEnumClass structure.
+ *
+ * Returns: the #GType
  */
 #define G_ENUM_CLASS_TYPE(class)       (G_TYPE_FROM_CLASS (class))
 /**
  * G_ENUM_CLASS_TYPE_NAME:
  * @class: a #GEnumClass
  * 
- * Returns: the static type name from a given #GEnumClass structure.
+ * Get the static type name from a given #GEnumClass structure.
+ *
+ * Returns: the type name.
  */
 #define G_ENUM_CLASS_TYPE_NAME(class)  (g_type_name (G_ENUM_CLASS_TYPE (class)))
 
@@ -69,8 +75,10 @@ G_BEGIN_DECLS
 /**
  * G_TYPE_IS_FLAGS:
  * @type: a #GType ID.
- * 
- * Returns: whether @type "is a" %G_TYPE_FLAGS.
+ *
+ * Checks whether @type "is a" %G_TYPE_FLAGS. 
+ *
+ * Returns: %TRUE if @type "is a" %G_TYPE_FLAGS.
  */
 #define G_TYPE_IS_FLAGS(type)         (G_TYPE_FUNDAMENTAL (type) == G_TYPE_FLAGS)
 /**
@@ -92,14 +100,18 @@ G_BEGIN_DECLS
  * G_FLAGS_CLASS_TYPE:
  * @class: a #GFlagsClass
  * 
- * Returns: the type identifier from a given #GFlagsClass structure.
+ * Get the type identifier from a given #GFlagsClass structure.
+ *
+ * Returns: the #GType
  */
 #define G_FLAGS_CLASS_TYPE(class)      (G_TYPE_FROM_CLASS (class))
 /**
  * G_FLAGS_CLASS_TYPE_NAME:
  * @class: a #GFlagsClass
  * 
- * Returns: the static type name from a given #GFlagsClass structure.
+ * Get the static type name from a given #GFlagsClass structure.
+ *
+ * Returns: the type name.
  */
 #define G_FLAGS_CLASS_TYPE_NAME(class) (g_type_name (G_FLAGS_CLASS_TYPE (class)))