]> gitweb.factorcode.org Git - factor.git/commitdiff
stack-checker.dependencies: +definition+ can't use $class-description.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 28 Nov 2016 17:38:44 +0000 (09:38 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 28 Nov 2016 17:38:44 +0000 (09:38 -0800)
Also, placeholders for +effect+ and +conditional+.

basis/stack-checker/dependencies/dependencies-docs.factor

index f281215a0fc1dbd5999db365595cec40c73aa863..b9db67d1760fb38116e065ca5b716b94e42d5af1 100644 (file)
@@ -2,7 +2,13 @@ USING: help.markup help.syntax ;
 IN: stack-checker.dependencies
 
 HELP: +definition+
-{ $class-description "Word that indicates that the dependency is a definition dependency. It is a dependency among two words in which one word depends on the definition of the another. For example, if two words are defined as " { $snippet ": o ( -- ) i ;" } " and " { $snippet ": i ( -- ) ; inline" } ", then 'o' has a definition dependency to 'i' because 'i' is inline. If the definition of 'i' changes 'o' must be recompiled." } ;
+{ $description "Word that indicates that the dependency is a definition dependency. It is a dependency among two words in which one word depends on the definition of the another. For example, if two words are defined as " { $snippet ": o ( -- ) i ;" } " and " { $snippet ": i ( -- ) ; inline" } ", then 'o' has a definition dependency to 'i' because 'i' is inline. If the definition of 'i' changes 'o' must be recompiled." } ;
+
+HELP: +effect+
+{ $description "Word that indicates that the dependency is an effect dependency." } ;
+
+HELP: +conditional+
+{ $description "Word that indicates that the dependency is a conditional dependency." } ;
 
 HELP: dependencies
 { $var-description "Words that the current quotation depends on." } ;