Removed duplicated words (#10754)

This commit is contained in:
Ilya Churaev
2022-03-03 09:50:54 +03:00
committed by GitHub
parent 974ae136a6
commit 1fec99afa3
22 changed files with 28 additions and 28 deletions

View File

@@ -3592,7 +3592,7 @@ def CheckOperatorSpacing(filename, clean_lines, linenum, error):
elif not Match(r'#.*include', line):
# Look for < that is not surrounded by spaces. This is only
# triggered if both sides are missing spaces, even though
# technically should should flag if at least one side is missing a
# technically should flag if at least one side is missing a
# space. This is done to avoid some false positives with shifts.
match = Match(r'^(.*[^\s<])<[^\s=<,]', line)
if match: