From 199435f11a7306981bd0328563bb8b41371339f0 Mon Sep 17 00:00:00 2001 From: Doug Coleman <doug.coleman@gmail.com> Date: Sat, 27 Aug 2011 00:14:56 -0500 Subject: [PATCH] Fix the docs for tools.coverage --- basis/tools/coverage/coverage-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/tools/coverage/coverage-docs.factor b/basis/tools/coverage/coverage-docs.factor index 2964abb51c..b2f52c2e9a 100644 --- a/basis/tools/coverage/coverage-docs.factor +++ b/basis/tools/coverage/coverage-docs.factor @@ -35,7 +35,7 @@ HELP: coverage. } { $description "Calls the coverage word on all the words in a vocabalary or on a single word and prints out a report." } ; -ARTICLE: "tools.coverage" "tools.coverage" +ARTICLE: "tools.coverage" "Coverage tool" "The " { $vocab-link "tools.coverage" } " vocabulary is a tool for testing code coverage. The implementation uses " { $vocab-link "tools.annotations" } " to place a coverage object at the beginning of every quotation. When the quotation executes, a slot on the coverage object is set to true. By examining the coverage objects after running the code for some time, one can see which of the quotations did not execute and write more tests or refactor the code." $nl "Enabling/disabling coverage:" { $subsections coverage-on coverage-off }