From 86176a30a0861d357552adb41d787818795e9b8e Mon Sep 17 00:00:00 2001 From: Geoffroy Van Cutsem Date: Fri, 7 May 2021 15:20:22 +0200 Subject: [PATCH] config-tools: fix a couple of typos in helper script Fix a couple of typos in text displayed by a helper script used when building ACRN. No functional change made to the script itself. Signed-off-by: Geoffroy Van Cutsem --- hypervisor/scripts/genconf.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hypervisor/scripts/genconf.sh b/hypervisor/scripts/genconf.sh index 6c8847d7e..b6f9c2206 100644 --- a/hypervisor/scripts/genconf.sh +++ b/hypervisor/scripts/genconf.sh @@ -42,7 +42,7 @@ transform() { exit 1 fi sed -i -e "s/YEAR/$year/" ${out}/scenarios/${scenario}/${1} - echo "${1} was generated using xsltproc succesfully." + echo "${1} was generated using xsltproc successfully." } transform vm_configurations.c @@ -56,7 +56,7 @@ if which clang-format ; then | xargs clang-format --style=file -i --fallback-style=none else echo "clang-format cannot be found. The generated files under ${out}/scenarios/${scenario} are not formatted." - echo "clang-format is a tool to format the C code automatically and improve the code readibility." + echo "clang-format is a tool to format the C code automatically and improve the code readability." echo "Please install clang-format and format the generated files if those need to be included and reviewed." fi