[Libreoffice-commits] core.git: bin/find-clang-format.py

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Mon Jan 27 22:04:56 UTC 2020


 bin/find-clang-format.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 859ad3f1a4cf3d614c7cb88c71500c6f84af37c0
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Mon Jan 27 22:57:58 2020 +0100
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Jan 27 23:04:22 2020 +0100

    Fix typo
    
    Change-Id: I12bbcdaa010fc426b77811375015675307dce861
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87563
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

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("+"):


More information about the Libreoffice-commits mailing list