diff options
author | Keith Bostic <keith@wiredtiger.com> | 2012-02-10 12:37:15 +0000 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2012-02-10 12:37:15 +0000 |
commit | 4f55a73f68ebd87a2ecf2c754a08ee22eeba5574 (patch) | |
tree | dc41b39f69d5578f04298b073ab7af93773baa59 /dist/s_docs | |
parent | 509a0c8700c3fa36434cc576e3a8634ddf2e817d (diff) | |
download | mongo-4f55a73f68ebd87a2ecf2c754a08ee22eeba5574.tar.gz |
Don't use "aspell --mode=ccpp" when spell-checking the documentation,
there's no C-language code there (and it turns out that RedHat/CentOS
don't support aspell in current releases). Makes #165 better, but it
doesn't completely fix it.
Diffstat (limited to 'dist/s_docs')
-rwxr-xr-x | dist/s_docs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/s_docs b/dist/s_docs index 89b7084712b..4f23455a7ac 100755 --- a/dist/s_docs +++ b/dist/s_docs @@ -21,7 +21,7 @@ spellchk() type aspell > /dev/null 2>&1 || return (cd ../docs/src && - cat *.dox | aspell --mode=ccpp --lang=en --personal=./spell.ok list) | + cat *.dox | aspell --lang=en --personal=./spell.ok list) | sort -u > $t test -s $t && { echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=" |