diff options
| author | David Robillard <d@drobilla.net> | 2019-03-17 18:42:44 +0100 | 
|---|---|---|
| committer | David Robillard <d@drobilla.net> | 2019-03-17 18:42:44 +0100 | 
| commit | a7860f7e495583f536480a7cce2b6e0c55926f3a (patch) | |
| tree | 54cf87468b8aa4071e50a7a54b7a047cd30a2508 | |
| parent | 0fa4d4847eb6d5bb0f58da889933c94c37ecb730 (diff) | |
| download | lv2-a7860f7e495583f536480a7cce2b6e0c55926f3a.tar.xz | |
Fix misleading comment
| -rw-r--r-- | lv2/atom/util.h | 2 | 
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  */  |