diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2024-06-05 11:56:14 +0200 |
---|---|---|
committer | Taichi Haradaguchi <20001722@ymail.ne.jp> | 2024-06-05 14:52:40 +0200 |
commit | e91404b8b6e5c95ab9bfc055006edc0a17df2e94 (patch) | |
tree | 2e6f6c4b85646e62f9ffffac1ada57b43c4e1981 /odk/examples | |
parent | f32848500aa25a0e4e29053900c7827ec9a3b535 (diff) |
Fix typo
Change-Id: I4706e1f5a2de6f1a0e48bd5e297eb904ac66f581
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168458
Reviewed-by: Taichi Haradaguchi <20001722@ymail.ne.jp>
Tested-by: Jenkins
Diffstat (limited to 'odk/examples')
-rw-r--r-- | odk/examples/DevelopersGuide/OfficeDev/Clipboard/python/clipboard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Clipboard/python/clipboard.py b/odk/examples/DevelopersGuide/OfficeDev/Clipboard/python/clipboard.py index e506dfdacad4..6610f0021b26 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/Clipboard/python/clipboard.py +++ b/odk/examples/DevelopersGuide/OfficeDev/Clipboard/python/clipboard.py @@ -103,7 +103,7 @@ def read_clipboard(clipboard): "HumanPresentableName:", flavor.HumanPresentableName) # Select the flavor that supports utf-16 - # str.casefold() allows reliable case-insensitive comparision + # str.casefold() allows reliable case-insensitive comparison if flavor.MimeType.casefold() == TextTransferable.UNICODE_CONTENT_TYPE.casefold(): unicode_flavor = flavor print() |