odk/examples/DevelopersGuide/OfficeDev/Clipboard/python/clipboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit e91404b8b6e5c95ab9bfc055006edc0a17df2e94 Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Wed Jun 5 11:56:14 2024 +0200 Commit: Taichi Haradaguchi <20001...@ymail.ne.jp> CommitDate: Wed Jun 5 14:52:40 2024 +0200 Fix typo Change-Id: I4706e1f5a2de6f1a0e48bd5e297eb904ac66f581 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168458 Reviewed-by: Taichi Haradaguchi <20001...@ymail.ne.jp> Tested-by: Jenkins 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()