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 <geoffroy.vancutsem@intel.com>
This commit is contained in:
Geoffroy Van Cutsem 2021-05-07 15:20:22 +02:00 committed by wenlingz
parent 688a41c290
commit 86176a30a0
1 changed files with 2 additions and 2 deletions

View File

@ -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