summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-04-06 22:32:05 +0200
committerEike Rathke <erack@redhat.com>2017-04-07 10:15:51 +0000
commitcaf388959576da4f480b8c97443cb052f6201a33 (patch)
tree78f1f70c3cdcbbabea37371a40e066843f969f10 /compilerplugins
parenta2a4fa446f46da0d58635412d2f2ad1e3f31cbc9 (diff)
Fix typos
Change-Id: Ibad3f8e9f55af5e652b6be198bebace2b1bfb35b Reviewed-on: https://gerrit.libreoffice.org/36235 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'compilerplugins')
-rwxr-xr-xcompilerplugins/clang/constantparam.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/constantparam.py b/compilerplugins/clang/constantparam.py
index 5550c51c34f3..2dede4f1ad8d 100755
--- a/compilerplugins/clang/constantparam.py
+++ b/compilerplugins/clang/constantparam.py
@@ -72,7 +72,7 @@ with open("loplugin.constantparam.report", "wt") as f:
# take bitmask parameters where one or more of the bits in the
# bitmask is always one or always zero
-# integer to hext str
+# integer to hex str
def hex(i):
return "0x%x" % i
# I can't use python's ~ operator, because that produces negative numbers