factor/basis/tools/deprecation/deprecation-docs.factor

17 lines
635 B
Factor
Raw Normal View History

! Copyright (C) 2009 Joe Groff.
! See http://factorcode.org/license.txt for BSD license.
2009-08-20 16:35:11 -04:00
USING: help.markup help.syntax kernel words ;
IN: tools.deprecation
2009-08-20 16:35:11 -04:00
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. Notes are collected and reported by the " { $link "tools.errors" } " mechanism when deprecated words are used to define other words."
{ $subsections
postpone: deprecated
:deprecations
} ;
2009-08-20 16:35:11 -04:00
ABOUT: "tools.deprecation"