summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/lua_api.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-12 11:06:35 +0200
committerRobin Gareus <robin@gareus.org>2016-04-12 11:06:35 +0200
commitf5e4d3b0326dfc95c0a513c79cb8b3d84ea37800 (patch)
tree3b88c275dbe1a789927c02f543350a6cc1bb703c /libs/ardour/ardour/lua_api.h
parent7292989a5a6fa6e8a19ce1a5a0b72f537472d842 (diff)
NO-OP; document some more parameters.
Since headers only provide the declaration, function parameters need to be documented.
Diffstat (limited to 'libs/ardour/ardour/lua_api.h')
-rw-r--r--libs/ardour/ardour/lua_api.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/lua_api.h b/libs/ardour/ardour/lua_api.h
index 92e63d7692..66402325e4 100644
--- a/libs/ardour/ardour/lua_api.h
+++ b/libs/ardour/ardour/lua_api.h
@@ -100,8 +100,8 @@ namespace ARDOUR { namespace LuaAPI {
* This is equivalent to the following lua code
* @code
* function (processor, param_id)
- * local plugininsert = processor:to_insert ()
- * local plugin = plugininsert:plugin(0)
+ * local plugininsert = processor:to_insert ()
+ * local plugin = plugininsert:plugin(0)
* local _, t = plugin:get_parameter_descriptor(param_id, ARDOUR.ParameterDescriptor ())
* local ctrl = Evoral.Parameter (ARDOUR.AutomationType.PluginAutomation, 0, param_id)
* local ac = pi:automation_control (ctrl, false)
@@ -110,7 +110,7 @@ namespace ARDOUR { namespace LuaAPI {
* end
* @endcode
*
- * Example usage: get 3rd input parameter of first plugin on the given route
+ * Example usage: get the third input parameter of first plugin on the given route
* (Ardour starts counting at zero).
* @code
* local al, cl, pd = ARDOUR.LuaAPI.plugin_automation (route:nth_plugin (0), 3)