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