]> gitweb.factorcode.org Git - factor.git/commitdiff
modules.using: fixed help-lint errors
authorSam Anklesaria <sam@Tintin.local>
Wed, 29 Jul 2009 21:24:14 +0000 (16:24 -0500)
committerSam Anklesaria <sam@Tintin.local>
Wed, 29 Jul 2009 21:24:14 +0000 (16:24 -0500)
extra/modules/using/using-docs.factor

index f03d51bbf7b3831508865d97062d0ee2aed307e6..257ad3315b59323945cf5251a9a1e51558b3cb75 100644 (file)
@@ -3,11 +3,11 @@ IN: modules
 ARTICLE: { "modules.using" "use" } "Using the modules.using vocab"
 "This vocabulary defines " { $link POSTPONE: USING*: } " as an alternative to " { $link POSTPONE: USING: } " which makes qualified imports easier. "
 "Secondly, it allows loading vocabularies from remote servers, as long as the remote vocabulary can be accessed at compile time. "
-"Finally, the word can treat words in remote vocabularies as remote procedure calls.  Any inputs are passed to the imported words as normal, and the result will appear on the stack- the only difference is that the word isn't called locally." ;
+"Finally, the word can treat words in remote vocabularies as remote procedure calls. Any inputs are passed to the imported words as normal, and the result will appear on the stack- the only difference is that the word isn't called locally." ;
 ABOUT: { "modules.using" "use" }
 
 IN: syntax
 HELP: USING*:
 { $syntax "USING: rpc-server::module fetch-sever:module { module qualified-name } { module => word ... } { qualified-module } { module EXCEPT word ... } { module word => importname } ;" }
-{ $description "Adds vocabularies to the search path.  Vocabularies can be loaded off a server or called as an rpc if preceded by a valid hostname.  Bracketed pairs facilitate all types of qualified imports on both remote and local modules." }
+{ $description "Adds vocabularies to the search path. Vocabularies can be loaded off a server or called as an rpc if preceded by a valid hostname. Bracketed pairs facilitate all types of qualified imports on both remote and local modules." }
 "To use the 'USING*:' without explicitly importing modules.using first, add '\"modules.using\" require' to your .factor-boot-rc" ;
\ No newline at end of file