diff options
Diffstat (limited to 'spelling')
-rwxr-xr-x | spelling/check-spelling.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spelling/check-spelling.sh b/spelling/check-spelling.sh index 5f7b450..60ae5df 100755 --- a/spelling/check-spelling.sh +++ b/spelling/check-spelling.sh @@ -22,7 +22,7 @@ cat spelling/international.dic.txt spelling/en_US.dic.txt spelling/en_US.aff.txt check() { html="$1" echo "$1" - hunspell -l -p dicts.txt -d en_US -i utf-8 "$html" | tee -a spelling.txt + hunspell -l -p dicts.txt -d fr_FR -d en_US -i utf-8 "$html" | tee -a spelling.txt } export -f check find "${HTML_DIR}" -type f -name '*.html' -print0 | xargs -0 -I{} bash -c "check {}" \; |