diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2021-04-06 21:23:56 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2021-04-06 23:01:31 +0200 |
commit | 317af2e31bacb3fb5e9d705d966479d04e02e2a0 (patch) | |
tree | ea537d655495b17de6129ea15da5b1a1fd0fc9ae /wizards | |
parent | cf5cea8a44d928f694edda511a2cae4a0fa6c3fd (diff) |
Fix typos
Change-Id: I64d32773984a3ab06e809fcaeff8f95b910e127b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113700
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/scriptforge/python/scriptforge.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/source/scriptforge/python/scriptforge.py b/wizards/source/scriptforge/python/scriptforge.py index 8daa100d8034..66079f63b472 100644 --- a/wizards/source/scriptforge/python/scriptforge.py +++ b/wizards/source/scriptforge/python/scriptforge.py @@ -350,7 +350,7 @@ class ScriptForge(object, metaclass = _Singleton): for method in methods: func = getattr(cls, method) if callable(func): - # Assign the synonymes to the original method + # Assign the synonyms to the original method m = method.lower() if hasattr(cls, m) is False: setattr(cls, m, func) |