fixed documentation regarding type checking macros that do and do not
author14:06:34 Tim Janik <timj@imendio.com>
Tue, 10 Jun 2008 12:07:18 +0000 (12:07 +0000)
committerTim Janik <timj@src.gnome.org>
Tue, 10 Jun 2008 12:07:18 +0000 (12:07 +0000)
2008-06-10 14:06:34  Tim Janik  <timj@imendio.com>

        * gobject/tmpl/gtype.sgml: fixed documentation regarding type checking
        macros that do and do not issue warnings.

svn path=/trunk/; revision=6986

docs/reference/ChangeLog
docs/reference/gobject/tmpl/gtype.sgml

index e686d5c4709a4126ec7d1afb653286ee2e0223df..e1783854949e287b9682edfe05dcbe98cb65d3aa 100644 (file)
@@ -1,3 +1,8 @@
+2008-06-10 14:06:34  Tim Janik  <timj@imendio.com>
+
+       * gobject/tmpl/gtype.sgml: fixed documentation regarding type checking
+       macros that do and do not issue warnings.
+
 2008-05-28  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/glib-docs.sgml:
index 692c000c702c900c65be721a06a2cbbf09b44d32..253a1cd8f1bac36fb4fc6b9a0cef6b63a4329e3f 100644 (file)
@@ -516,7 +516,7 @@ This macro should only be used in type implementations.
 <!-- ##### MACRO G_TYPE_CHECK_INSTANCE ##### -->
 <para>
 Returns %TRUE if @instance is a valid #GTypeInstance structure,
-otherwise emits a warning and returns %FALSE.
+otherwise issues a warning and returns %FALSE.
 <para>
 </para>
 This macro should only be used in type implementations.
@@ -528,7 +528,7 @@ This macro should only be used in type implementations.
 <!-- ##### MACRO G_TYPE_CHECK_INSTANCE_CAST ##### -->
 <para>
 Checks that @instance is an instance of the type identified by @g_type
-and emits a warning if this is not the case. Returns @instance casted 
+and issues a warning if this is not the case. Returns @instance casted 
 to a pointer to @c_type.
 </para>
 <para>
@@ -543,7 +543,7 @@ This macro should only be used in type implementations.
 <!-- ##### MACRO G_TYPE_CHECK_INSTANCE_TYPE ##### -->
 <para>
 Returns %TRUE if @instance is an instance of the type identified by @g_type.
-Otherwise emits a warning and returns %FALSE.
+Otherwise returns %FALSE.
 </para>
 <para>
 This macro should only be used in type implementations.
@@ -556,7 +556,7 @@ This macro should only be used in type implementations.
 <!-- ##### MACRO G_TYPE_CHECK_CLASS_CAST ##### -->
 <para>
 Checks that @g_class is a class structure of the type identified by @g_type
-and emits a warning if this is not the case. Returns @g_class casted 
+and issues a warning if this is not the case. Returns @g_class casted 
 to a pointer to @c_type.
 </para>
 <para>
@@ -571,7 +571,7 @@ This macro should only be used in type implementations.
 <!-- ##### MACRO G_TYPE_CHECK_CLASS_TYPE ##### -->
 <para>
 Returns %TRUE if @g_class is a class structure of the type identified by 
-@g_type. Otherwise emits a warning and returns %FALSE.
+@g_type. Otherwise returns %FALSE.
 </para>
 <para>
 This macro should only be used in type implementations.