summaryrefslogtreecommitdiffstats
path: root/book
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2016-01-18 17:53:44 -0500
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:24 -0400
commitf916fcaaae92aa57dd1d644badd1979bd93a4d35 (patch)
treede1d1d5bff4039bd0beb2eabe1eb7c6f9303f3ee /book
parentConvert all Unicode to ASCII(128) (diff)
downloadrtems-docs-f916fcaaae92aa57dd1d644badd1979bd93a4d35.tar.bz2
Add support for spellchecking with a custom dictionary.
To use: 1. Install aspell 2. waf spell <list of files> * waf spell mydoc.rst * waf spell *.rst This uses a custom dictionary stored in common/spell/dict/. We should add all RTEMS and programming terms to this to ensure we are consistent. Amar.
Diffstat (limited to 'book')
-rw-r--r--book/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/wscript b/book/wscript
index bcd9860..0503604 100644
--- a/book/wscript
+++ b/book/wscript
@@ -2,7 +2,7 @@ from sys import path
from os.path import abspath, exists
path.append(abspath('../common/'))
-from waf import cmd_configure_path, cmd_build_path, cmd_options_path
+from waf import cmd_configure_path, cmd_build_path, cmd_options_path, spell, cmd_spell
def options(ctx):