aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/ext
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-12 19:33:00 +0000
committerDavid Robillard <d@drobilla.net>2012-04-12 19:33:00 +0000
commitc24f14cdaf6cac3b36e698be82a721f46c5dd453 (patch)
treeafb9c8bb1d33b81bbc0bf339f1af02df464159c5 /lv2/lv2plug.in/ns/ext
parentf0f9e67865ff9beb323ad1acab4d0136ea08c38f (diff)
downloadlv2-c24f14cdaf6cac3b36e698be82a721f46c5dd453.tar.xz
Update doxygen markup.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext')
-rw-r--r--lv2/lv2plug.in/ns/ext/atom/util.h2
-rw-r--r--lv2/lv2plug.in/ns/ext/urid/urid.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/lv2/lv2plug.in/ns/ext/atom/util.h b/lv2/lv2plug.in/ns/ext/atom/util.h
index f7fd35f..f07956b 100644
--- a/lv2/lv2plug.in/ns/ext/atom/util.h
+++ b/lv2/lv2plug.in/ns/ext/atom/util.h
@@ -212,7 +212,7 @@ lv2_atom_object_next(const LV2_Atom_Property_Body* i)
/**
A macro for iterating over all properties of an Object.
- @param object The object to iterate over
+ @param obj The object to iterate over
@param iter The name of the iterator
This macro is used similarly to a for loop (which it expands to), e.g.:
diff --git a/lv2/lv2plug.in/ns/ext/urid/urid.h b/lv2/lv2plug.in/ns/ext/urid/urid.h
index edf047f..5947631 100644
--- a/lv2/lv2plug.in/ns/ext/urid/urid.h
+++ b/lv2/lv2plug.in/ns/ext/urid/urid.h
@@ -102,11 +102,11 @@ typedef struct {
/**
Get the URI for a previously mapped numeric ID.
- Returns NULL if @c urid is not yet mapped. Otherwise, the corresponding
+ Returns NULL if @p urid is not yet mapped. Otherwise, the corresponding
URI is returned in a canonical form. This MAY not be the exact same
string that was originally passed to LV2_URID_Map::map(), but it MUST be
an identical URI according to the URI syntax specification (RFC3986). A
- non-NULL return for a given @c urid will always be the same for the life
+ non-NULL return for a given @p urid will always be the same for the life
of the plugin. Plugins that intend to perform string comparison on
unmapped URIs SHOULD first canonicalise URI strings with a call to
map_uri() followed by a call to unmap_uri().