help-lint ( prefix -- )
Factor documentation > Factor handbook > Developer tools > Help system > Help lint tool
Next:help-lint-all ( -- )


Vocabulary
help.lint

Inputs and outputs
prefixa vocabulary specifier


Word description
Checks all word help and articles in the given vocabulary and all child vocabularies.

Definition
USING: help.lint.checks help.lint.private namespaces parser
sequences vocabs vocabs.hierarchy ;

IN: help.lint

: help-lint ( prefix -- )
[
auto-use? off all-vocab-names all-vocabs set
group-articles vocab-articles set child-vocabs
[ check-vocab ] each
] with-scope ;