aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xscripts/assert-spelling.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/assert-spelling.sh b/scripts/assert-spelling.sh
index edc56dd..bf1a350 100755
--- a/scripts/assert-spelling.sh
+++ b/scripts/assert-spelling.sh
@@ -25,7 +25,7 @@ done
if [[ -s "$OUT" ]]; then
printf "\nvvv Mispelled words detected by hunspell.\n\n"
- sort < "$OUT" | uniq
+ cut -d\ -f2- < "$OUT" | sort | uniq
printf "\n^^^\n" >&2
exit 1
else