fix: correct typos and improve comments across multiple files by codespell (#4116)

Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
This commit is contained in:
Huang Qi
2025-03-07 08:21:54 +08:00
committed by GitHub
parent 73998e4c85
commit 412631ac13
108 changed files with 215 additions and 215 deletions

View File

@ -170,9 +170,9 @@ def obj_summary(valobj, unavailable='{...}'):
return unavailable
def sequence_summary(childern, maxsize=32):
def sequence_summary(children, maxsize=32):
s = ''
for child in childern:
for child in children:
if len(s) > 0:
s += ', '
s += obj_summary(child)