aboutsummaryrefslogtreecommitdiffstats
path: root/lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-17 18:42:44 +0100
committerDavid Robillard <d@drobilla.net>2019-03-17 18:42:44 +0100
commita7860f7e495583f536480a7cce2b6e0c55926f3a (patch)
tree54cf87468b8aa4071e50a7a54b7a047cd30a2508 /lv2
parent0fa4d4847eb6d5bb0f58da889933c94c37ecb730 (diff)
downloadlv2-a7860f7e495583f536480a7cce2b6e0c55926f3a.tar.xz
Fix misleading comment
Diffstat (limited to 'lv2')
-rw-r--r--lv2/atom/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2/atom/util.h b/lv2/atom/util.h
index cf24a53..de93269 100644
--- a/lv2/atom/util.h
+++ b/lv2/atom/util.h
@@ -270,7 +270,7 @@ lv2_atom_object_next(const LV2_Atom_Property_Body* i)
This macro is used similarly to a for loop (which it expands to), e.g.:
@code
LV2_ATOM_OBJECT_FOREACH(object, i) {
- // Do something with prop (an LV2_Atom_Property_Body*) here...
+ // Do something with i (an LV2_Atom_Property_Body*) here...
}
@endcode
*/