libgimpbase: more API doc fixes

This commit is contained in:
Michael Natterer 2015-05-31 19:44:39 +02:00
parent 3daef677ca
commit d91ff74820
2 changed files with 4 additions and 7 deletions

View File

@ -335,7 +335,7 @@ gimp_file_has_extension (GFile *file,
*
* Since: GIMP 2.10
*
* Return value: %TRUE on success, %FALSE otherwise. On %FASLE, @error
* Return value: %TRUE on success, %FALSE otherwise. On %FALSE, @error
* is set.
**/
gboolean

View File

@ -34,7 +34,7 @@
* @short_description: A container structure to maintain an array of
* generic values
* @see_also: #GValue, #GParamSpecValueArray, gimp_param_spec_value_array()
* @title: Value arrays
* @title: GimpValueArray
*
* The prime purpose of a #GimpValueArray is for it to be used as an
* object property that holds an array of values. A #GimpValueArray wraps
@ -48,8 +48,6 @@
/**
* GimpValueArray:
* @n_values: number of values contained in the array
* @values: array of values
*
* A #GimpValueArray contains an array of #GValue elements.
*
@ -255,7 +253,7 @@ gimp_value_array_append (GimpValueArray *value_array,
/**
* gimp_value_array_insert:
* @value_array: #GimpValueArray to add an element to
* @index: insertion position, must be <= value_array->n_values
* @index: insertion position, must be <= gimp_value_array_length()
* @value: (allow-none): #GValue to copy into #GimpValueArray, or %NULL
*
* Insert a copy of @value at specified position into @value_array. If @value
@ -297,8 +295,7 @@ gimp_value_array_insert (GimpValueArray *value_array,
* gimp_value_array_remove:
* @value_array: #GimpValueArray to remove an element from
* @index: position of value to remove, which must be less than
* <code>value_array-><link
* linkend="GimpValueArray.n-values">n_values</link></code>
* gimp_value_array_length()
*
* Remove the value at position @index from @value_array.
*