summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/lua_api.h
diff options
context:
space:
mode:
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)