diff --git a/lang/talon/talon.py b/lang/talon/talon.py index 8b671e1575..fa61615242 100644 --- a/lang/talon/talon.py +++ b/lang/talon/talon.py @@ -76,7 +76,7 @@ def on_ready(): @mod.action_class class Actions: def talon_code_insert_function(text: str, selection: str, prepend_actions: bool): - """inserts talent specific action with either user prepended or not""" + """inserts talon-specific action call; prepend_actions will prepend 'actions' namespace for python (e.g. actions.insert('test'))""" text += f"({selection or ''})" if prepend_actions: text = "actions." + text