From 2ebd211a1814337ad37efd36c81fd263efdc09e2 Mon Sep 17 00:00:00 2001 From: baixu Date: Wed, 9 Oct 2024 17:32:37 +0800 Subject: [PATCH] fixed some spelling errors --- software/utils/cruiser/README.md | 4 ++-- software/utils/hawkeye/arm/expect.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/software/utils/cruiser/README.md b/software/utils/cruiser/README.md index 5d2d27f..e889469 100644 --- a/software/utils/cruiser/README.md +++ b/software/utils/cruiser/README.md @@ -233,7 +233,7 @@ int function(int param1, float param2){ 一般情况 ```c -#incldue +#include int function(int param1, float param2){ double param3[] = {...}; @@ -265,7 +265,7 @@ int function(int param1, float param2){ 指定进程号 ```c -#incldue +#include int function(int param1, float param2){ double param3[] = {...}; diff --git a/software/utils/hawkeye/arm/expect.sh b/software/utils/hawkeye/arm/expect.sh index 6a74169..8a693a0 100644 --- a/software/utils/hawkeye/arm/expect.sh +++ b/software/utils/hawkeye/arm/expect.sh @@ -40,11 +40,11 @@ expect ">" {send "end\n"} expect "(gdb)" {send "b $breakpoint \n"} expect "(gdb)" {send "r \n"} -expect "(gdb)" {send "shell echo before invoke funcion\n"} +expect "(gdb)" {send "shell echo before invoke function\n"} #expect "(gdb)" {send "writeargs $args\n"} expect "(gdb)" {send "readargs $args\n"} expect "(gdb)" {send "printmd5 $args\n"} expect "(gdb)" {send "n \n"} -expect "(gdb)" {send "shell echo after invoke funcion\n"} +expect "(gdb)" {send "shell echo after invoke function\n"} expect "(gdb)" {send "printmd5 $args\n"} expect "(gdb)" {send "q\n"} -- Gitee