From 55b699d9a9b08ba8086f30f29348bf4c87231c12 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 28 Jan 2008 04:58:33 +0000 Subject: Documentation fixes. git-svn-id: http://svn.drobilla.net/lad/slv2@1118 a436a847-0d15-0410-975c-d299462d15a1 --- slv2/values.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'slv2/values.h') diff --git a/slv2/values.h b/slv2/values.h index 40da342..bdff538 100644 --- a/slv2/values.h +++ b/slv2/values.h @@ -47,28 +47,28 @@ void slv2_values_free(SLV2Values); -/** Get the number of elements in a string list. +/** Get the number of elements in a value collection. */ unsigned -slv2_values_size(SLV2Values list); +slv2_values_size(SLV2Values values); -/** Get a string from a string list at the given index. +/** Get the value at a given index in the collection. * * @return the element at \a index, or NULL if index is out of range. * * Time = O(1) */ SLV2Value -slv2_values_get_at(SLV2Values list, unsigned index); +slv2_values_get_at(SLV2Values values, unsigned index); -/** Return whether \a list contains \a value. +/** Return whether \a values contains \a value. * * Time = O(n) */ bool -slv2_values_contains(SLV2Values list, SLV2Value value); +slv2_values_contains(SLV2Values values, SLV2Value value); /** @} */ -- cgit v1.2.1