summaryrefslogtreecommitdiffstats
path: root/slv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-04-28 16:41:22 +0000
committerDavid Robillard <d@drobilla.net>2007-04-28 16:41:22 +0000
commit068bf99fb9ff1030d111a7506601d1f702857261 (patch)
treee6d5f6f8848908b2c328dfaa7f9e0f57058725a5 /slv2
parent1c4636a0387b560a0f680a1b84f4d9db2a8ff9a4 (diff)
downloadlilv-068bf99fb9ff1030d111a7506601d1f702857261.tar.gz
lilv-068bf99fb9ff1030d111a7506601d1f702857261.tar.bz2
lilv-068bf99fb9ff1030d111a7506601d1f702857261.zip
Fixed more outdated reference to strings.h
git-svn-id: http://svn.drobilla.net/lad/slv2@478 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2')
-rw-r--r--slv2/plugin.h2
-rw-r--r--slv2/values.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/slv2/plugin.h b/slv2/plugin.h
index c6090a6..fa43be0 100644
--- a/slv2/plugin.h
+++ b/slv2/plugin.h
@@ -27,7 +27,7 @@ extern "C" {
#include <stdbool.h>
#include <slv2/types.h>
#include <slv2/port.h>
-#include <slv2/strings.h>
+#include <slv2/values.h>
/** \defgroup data Plugin data access
*
diff --git a/slv2/values.h b/slv2/values.h
index a8381cd..3a46583 100644
--- a/slv2/values.h
+++ b/slv2/values.h
@@ -26,9 +26,9 @@
extern "C" {
#endif
-/** \defgroup strings Collections of strings
+/** \defgroup values Collections of values
*
- * SLV2Values is an ordered collection of strings which is fast for random
+ * SLV2Values is an ordered collection of typed values which is fast for random
* access by index (i.e. a fancy array).
*
* @{