diff --git a/library/modules.facts b/library/modules.facts index 9bb3f014e0..2d6b4dba85 100644 --- a/library/modules.facts +++ b/library/modules.facts @@ -21,7 +21,7 @@ HELP: module-def "( name -- path )" HELP: modules f { $description "Variable. Hashtable mapping loaded module names to " { $link module } " instances." } -{ $see-also require reload-module } ; +{ $see-also require load-module } ; HELP: load-module "( name -- )" { $values { "name" "a module name string" } } @@ -47,7 +47,7 @@ $terpri HELP: provide "( name files tests -- )" { $values { "name" "a string" } { "files" "a sequence of strings" } { "tests" "a sequence of strings" } } -{ $description "Registers a module definition and loads the source files. Usually instead of calling this word, module definitions use the parsing word " { $link POSTPONE: PROVIDE: } " instead." } ; +{ $description "Registers a module definition and loads its source files. Usually instead of calling this word, module definitions use the parsing word " { $link POSTPONE: PROVIDE: } " instead." } ; HELP: test-module "( name -- )" { $values { "name" "a module name string" } } diff --git a/library/syntax/parse-syntax.facts b/library/syntax/parse-syntax.facts index 41a3fff81a..7547e588e5 100644 --- a/library/syntax/parse-syntax.facts +++ b/library/syntax/parse-syntax.facts @@ -1,4 +1,4 @@ -USING: generic help kernel math words ; +USING: generic help kernel math modules words ; HELP: parsing "" { $description "Declares the most recently defined word as a parsing word." } @@ -236,7 +236,7 @@ $terpri HELP: REQUIRES: "modules... ;" { $values { "modules" "module name strings" } } -{ $description "Loads a list of modules by calling " { $link (require) " on each one." } ; +{ $description "Loads a list of modules by calling " { $link (require) } " on each one." } ; HELP: PROVIDE: "name files tests ;" { $values { "name" "a string" } { "files" "a sequence of strings" } { "tests" "a sequence of strings" } }