summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-04-06 21:23:56 +0200
committerJulien Nabet <serval2412@yahoo.fr>2021-04-06 23:01:31 +0200
commit317af2e31bacb3fb5e9d705d966479d04e02e2a0 (patch)
treeea537d655495b17de6129ea15da5b1a1fd0fc9ae /wizards
parentcf5cea8a44d928f694edda511a2cae4a0fa6c3fd (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.py2
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)