]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/tools/deprecation/deprecation-docs.factor
factor: trim using lists
[factor.git] / basis / tools / deprecation / deprecation-docs.factor
index 28d771c170ac2a4ef661cfbaca4274ac02bd3f9e..9f71e109c0da89af3c0b626ed8e57c30c19ebeb4 100644 (file)
@@ -1,13 +1,16 @@
-! (c)2009 Joe Groff bsd license
-USING: help.markup help.syntax kernel words ;
+! Copyright (C) 2009 Joe Groff.
+! See http://factorcode.org/license.txt for BSD license.
+USING: help.markup help.syntax ;
 IN: tools.deprecation
 
 HELP: :deprecations
 { $description "Prints all deprecation notes." } ;
 
 ARTICLE: "tools.deprecation" "Deprecation tracking"
-"Factor's core syntax defines a " { $link POSTPONE: deprecated } " word that can be applied to words to mark them as deprecated. When the " { $vocab-link "tools.deprecation" } " vocabulary is loaded, notes will be collected and reported by the " { $link "tools.errors" } " mechanism when deprecated words are used to define other words."
-{ $subsection POSTPONE: deprecated }
-{ $subsection :deprecations } ;
+"Factor's core syntax defines a " { $link POSTPONE: deprecated } " word that can be applied to words to mark them as deprecated. Notes are collected and reported by the " { $link "tools.errors" } " mechanism when deprecated words are used to define other words."
+{ $subsections
+    POSTPONE: deprecated
+    :deprecations
+} ;
 
 ABOUT: "tools.deprecation"