remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / tools / crossref / crossref-docs.factor
blobb7ec0d07a2af2f7fa71f1de243677e9d36b1e2a4
1 USING: help.markup help.syntax words definitions prettyprint ;
2 IN: tools.crossref
4 ARTICLE: "tools.crossref" "Cross-referencing tools" 
5 { $subsection usage. }
6 { $subsection apropos }
7 { $see-also "definitions" "words" see see-methods } ;
9 ABOUT: "tools.crossref"
11 HELP: usage.
12 { $values { "word" "a word" } }
13 { $description "Prints an list of all callers of a word. This may include the word itself, if it is recursive." }
14 { $examples { $code "\\ reverse usage." } } ;
16 { usage usage. } related-words
18 HELP: apropos
19 { $values { "str" "a string" } }
20 { $description "Lists all words whose name contains a subsequence equal to " { $snippet "str" } ". Results are ranked using a simple distance algorithm." } ;