fix misspelled names in locally scoped code

These misspelled words are used in strictly local scopes.
Renaming these variables should not cause any problems.
This commit is contained in:
Lars Kruse
2025-05-02 11:31:19 +02:00
committed by Xiang Xiao
parent ce99762b36
commit 4568110d63
30 changed files with 184 additions and 184 deletions
+2 -2
View File
@@ -352,10 +352,10 @@ def parse_and_eval(expression: str, global_context: bool = False):
return Value(gdb_value)
def gdb_eval_or_none(expresssion):
def gdb_eval_or_none(expression):
"""Evaluate an expression and return None if it fails"""
try:
return parse_and_eval(expresssion)
return parse_and_eval(expression)
except gdb.error:
return None