diff options
author | David Robillard <d@drobilla.net> | 2007-02-05 23:52:16 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-02-05 23:52:16 +0000 |
commit | 1185ca8508267f9a2d466d70bfeeaa8a6aa05298 (patch) | |
tree | d85fadd0d8daa28635171c90f73f810a49c2bd9c | |
parent | 4e436b7a1bf6655e32bd79c5e37500ddddc6a2ff (diff) | |
download | lilv-1185ca8508267f9a2d466d70bfeeaa8a6aa05298.tar.gz lilv-1185ca8508267f9a2d466d70bfeeaa8a6aa05298.tar.bz2 lilv-1185ca8508267f9a2d466d70bfeeaa8a6aa05298.zip |
Documentation fixes.
git-svn-id: http://svn.drobilla.net/lad/slv2@283 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | doc/mainpage.dox | 2 | ||||
-rw-r--r-- | slv2/plugin.h | 4 | ||||
-rw-r--r-- | slv2/plugininstance.h | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/doc/mainpage.dox b/doc/mainpage.dox index 6c1fa4a..8417a4a 100644 --- a/doc/mainpage.dox +++ b/doc/mainpage.dox @@ -2,7 +2,7 @@ @section Overview -SLV2 is a host library to simply the discovery, loading, and use of LV2 +SLV2 is a host library to simplify the discovery, loading, and use of LV2 plugins. diff --git a/slv2/plugin.h b/slv2/plugin.h index 056c72f..839137f 100644 --- a/slv2/plugin.h +++ b/slv2/plugin.h @@ -48,8 +48,8 @@ typedef const struct _Plugin SLV2Plugin; * and will not work with libslv2 (eg plugins missing required fields, or * having multiple values for mandatory single-valued fields, etc. * - * Note that normal hosts do not need to worry about list - libslv2 does not - * load invalid plugins in to plugin lists. This is included for plugin + * Note that normal hosts do not need to worry about this - libslv2 does not + * load invalid plugins into plugin lists. This is included for plugin * testing utilities, etc. * * \return True if \a plugin is valid. diff --git a/slv2/plugininstance.h b/slv2/plugininstance.h index cfa6788..bf86010 100644 --- a/slv2/plugininstance.h +++ b/slv2/plugininstance.h @@ -27,7 +27,6 @@ extern "C" { #include <dlfcn.h> #include <slv2/lv2.h> #include <slv2/private_types.h> -#include <slv2/plugininstance.h> #include <slv2/plugin.h> #include <slv2/port.h> @@ -197,7 +196,6 @@ slv2_instance_get_handle(SLV2Instance* instance) #endif /* LIBSLV2_SOURCE */ - /** @} */ #ifdef __cplusplus |