summaryrefslogtreecommitdiffstats
path: root/slv2/stringlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'slv2/stringlist.h')
-rw-r--r--slv2/stringlist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/slv2/stringlist.h b/slv2/stringlist.h
index 7414659..0c42318 100644
--- a/slv2/stringlist.h
+++ b/slv2/stringlist.h
@@ -26,7 +26,7 @@ extern "C" {
#endif
-/** \defgroup strings Strings - Collection of strings
+/** \defgroup strings Collections of strings
*
* SLV2Strings is an ordered collection of strings which is fast for random
* access by index (i.e. a fancy array).
@@ -52,13 +52,13 @@ slv2_strings_size(SLV2Strings list);
/** Get a string from a string list at the given index.
*
- * @return the element at @a index, or NULL if index is out of range.
+ * @return the element at \a index, or NULL if index is out of range.
*/
const char*
slv2_strings_get_at(SLV2Strings list, unsigned index);
-/** Return whether @a list contains @a uri.
+/** Return whether \a list contains \a uri.
*/
bool
slv2_strings_contains(SLV2Strings list, const char* uri);