Skip to content

Commit c6f8995

Browse files
authored
Typos found by running "codespell" (danmar#3463)
1 parent e388bdc commit c6f8995

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

addons/cppcheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def reportError(location, severity, message, errorId=None):
1414
cppcheckdata.reportError(location, severity, message, __addon_name__, errorId or __errorid__)
1515

1616
def runcheckers():
17-
# If there are no checkers then dont run
17+
# If there are no checkers then don't run
1818
if len(__checkers__) == 0:
1919
return
2020
global __addon_name__

addons/misra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1867,7 +1867,7 @@ def checkDeclarationArgumentsViolations(func, startCall, endCall):
18671867
#
18681868
# TODO: We actually need to check if the names of the arguments are
18691869
# the same. But we can't do this because we have no links to
1870-
# variables in the arguments in function defintion in the dump file.
1870+
# variables in the arguments in function definition in the dump file.
18711871
foundVariables = 0
18721872
while startCall and startCall != endCall:
18731873
if startCall.varId:

0 commit comments

Comments
 (0)