From 578e116e2056fdd4a5a81d1f0d3cb9a201773922 Mon Sep 17 00:00:00 2001 From: JenTing Hsiao Date: Tue, 29 Dec 2020 10:14:15 +0800 Subject: [PATCH] Fix typo Signed-off-by: JenTing Hsiao --- scripts/codespell.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/codespell.sh b/scripts/codespell.sh index d3684b0f50..430a0566fd 100755 --- a/scripts/codespell.sh +++ b/scripts/codespell.sh @@ -7,6 +7,6 @@ codespell --skip=.git,./vendor --check-filenames --ignore-words-list=ba code=$? if [ $code -ne 0 ]; then - echo "Error: codespell found one or moe problems!" + echo "Error: codespell found one or more problems!" exit $code fi