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:
@ -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)
|
||||
|
||||
@ -12,7 +12,7 @@ IF %ERRORLEVEL% GTR 0 (
|
||||
|
||||
call docker images>nul 2>nul
|
||||
IF %ERRORLEVEL% GTR 0 (
|
||||
echo "Docker is not ready, please lanuch docker desktop firstly."
|
||||
echo "Docker is not ready, please launch docker desktop firstly."
|
||||
echo
|
||||
exit /b 2
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user