summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-01-27 22:57:58 +0100
committerJulien Nabet <serval2412@yahoo.fr>2020-01-27 23:04:22 +0100
commit859ad3f1a4cf3d614c7cb88c71500c6f84af37c0 (patch)
tree8d85dec4b6020c2afdc7c551155a77307104b184 /bin
parent8118d328285ee47556d18aab1efcd2824c1dbcf0 (diff)
Fix typo
Change-Id: I12bbcdaa010fc426b77811375015675307dce861 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87563 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/find-clang-format.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-clang-format.py b/bin/find-clang-format.py
index 067b5b0899be..38c9aac10780 100755
--- a/bin/find-clang-format.py
+++ b/bin/find-clang-format.py
@@ -18,7 +18,7 @@ CLANG_BINARY = Path(os.getenv("CLANG_FORMAT", "/opt/lo/bin/clang-format"))
def calculate_diff_size(diff):
additions, removals = 0, 0
- # ignore first 2 item in the sequnece
+ # ignore first 2 item in the sequence
# which are +++ and ---
for line in diff[2:]:
if line.startswith("+"):