]> gitweb.factorcode.org Git - factor.git/blob - basis/tools/deprecation/deprecation-docs.factor
a7390010d0104e8f6ffd62d0b0f89be223fbe29d
[factor.git] / basis / tools / deprecation / deprecation-docs.factor
1 ! (c)2009 Joe Groff bsd license
2 USING: help.markup help.syntax kernel words ;
3 IN: tools.deprecation
4
5 HELP: :deprecations
6 { $description "Prints all deprecation notes." } ;
7
8 ARTICLE: "tools.deprecation" "Deprecation tracking"
9 "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."
10 { $subsections
11     POSTPONE: deprecated
12     :deprecations
13 } ;
14
15 ABOUT: "tools.deprecation"