summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-04-26 09:56:47 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-04-30 15:06:45 +0000
commitfc2590cfa112222500a6c847917d7545f60024c6 (patch)
tree951f6a8e86c6d42672b9fe1e6e6cde3ee7eed152 /bin
parent783b02de3bc75cd0be1a6e919d4755a297fe7a84 (diff)
Fix typos
Change-Id: Id81b16ff26283611f0b84929d831c827f847ab73 Reviewed-on: https://gerrit.libreoffice.org/24317 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/find-unused-defines.sh2
-rwxr-xr-xbin/find-unused-typedefs.sh2
-rwxr-xr-xbin/get-bugzilla-attachments-by-mimetype2
3 files changed, 3 insertions, 3 deletions
diff --git a/bin/find-unused-defines.sh b/bin/find-unused-defines.sh
index d143a3e3b0a7..d9a39f76be84 100755
--- a/bin/find-unused-defines.sh
+++ b/bin/find-unused-defines.sh
@@ -13,7 +13,7 @@
# (3) sort and uniq the results, mostly so I have an idea how far along the process is
# (4) for each result:
# (5) grep for the constant
-# (6) use awk to to check if only one match for a given constant was found
+# (6) use awk to check if only one match for a given constant was found
# (7) if so, generate a sed command to remove the #define
#
( git grep -hP '^\w*#define\s+\w+.*\\' -- "[!e][!x][!t]*" \
diff --git a/bin/find-unused-typedefs.sh b/bin/find-unused-typedefs.sh
index 7a6f54b2b1c8..bc4378533efa 100755
--- a/bin/find-unused-typedefs.sh
+++ b/bin/find-unused-typedefs.sh
@@ -14,7 +14,7 @@
# (4) sort the results, mostly so I have an idea how far along the process is
# (5) for each result:
# (6) grep for the constant
-# (7) use awk to to check if only one match for a given constant was found
+# (7) use awk to check if only one match for a given constant was found
# (8) if so, generate a sed command to remove the #define
#
bin/find-unused-typedefs.py \
diff --git a/bin/get-bugzilla-attachments-by-mimetype b/bin/get-bugzilla-attachments-by-mimetype
index 3c6d62459930..33a70aceb54b 100755
--- a/bin/get-bugzilla-attachments-by-mimetype
+++ b/bin/get-bugzilla-attachments-by-mimetype
@@ -357,7 +357,7 @@ rss_bugzillas = (
redhatrpc = 'https://bugzilla.redhat.com/xmlrpc.cgi'
redhatbug = 'https://bugzilla.redhat.com/show_bug.cgi?id='
-#Novell Bugzilla requires users to log in in order to get details of the bugs such as attachment bodies etc.
+#Novell Bugzilla requires users to log in, in order to get details of the bugs such as attachment bodies etc.
#As a dirty workaround, we parse comments containing "Created an attachment (id=xxxxxx)" and download attachments manually
#python-bugzilla claims that it supports Novell bugzilla login but it's not working right now and novell bugzilla login
#system is a nightmare