summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2022-01-29 23:35:52 -0800
committerEmmanuele Bassi <ebassi@gmail.com>2022-02-13 12:25:18 +0000
commitc72913682407c2564124cce94cb923c4e28b1dfa (patch)
tree8d2d27d90d212b6835b397d759fc3799a5a2a245
parent7c53ad41b6525811ead53f1f173e556bc9d6cbd4 (diff)
downloadgobject-introspection-c72913682407c2564124cce94cb923c4e28b1dfa.tar.gz
girepository: Fix documentation comments
It was driving me crazy that g_type_info_get_array_length() claimed to return an array length.
-rw-r--r--girepository/gitypeinfo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/girepository/gitypeinfo.c b/girepository/gitypeinfo.c
index e90f9463..4fb7dddd 100644
--- a/girepository/gitypeinfo.c
+++ b/girepository/gitypeinfo.c
@@ -221,8 +221,8 @@ g_type_info_get_interface (GITypeInfo *info)
* g_type_info_get_array_length:
* @info: a #GITypeInfo
*
- * Obtain the array length of the type. The type tag must be a
- * #GI_TYPE_TAG_ARRAY or -1 will returned.
+ * Obtain the position of the argument which gives the array length of the type.
+ * The type tag must be a #GI_TYPE_TAG_ARRAY or -1 will be returned.
*
* Returns: the array length, or -1 if the type is not an array
*/
@@ -256,7 +256,7 @@ g_type_info_get_array_length (GITypeInfo *info)
* @info: a #GITypeInfo
*
* Obtain the fixed array size of the type. The type tag must be a
- * #GI_TYPE_TAG_ARRAY or -1 will returned.
+ * #GI_TYPE_TAG_ARRAY or -1 will be returned.
*
* Returns: the size or -1 if it's not an array
*/
@@ -290,7 +290,7 @@ g_type_info_get_array_fixed_size (GITypeInfo *info)
* @info: a #GITypeInfo
*
* Obtain if the last element of the array is %NULL. The type tag must be a
- * #GI_TYPE_TAG_ARRAY or %FALSE will returned.
+ * #GI_TYPE_TAG_ARRAY or %FALSE will be returned.
*
* Returns: %TRUE if zero terminated
*/