From 4dca0e66514e5eae374e2a7e2df9f6c21259e068 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sat, 24 Aug 2013 13:10:41 -0700 Subject: [PATCH] destructors: s/three slots/two slots/. --- core/destructors/destructors-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/destructors/destructors-docs.factor b/core/destructors/destructors-docs.factor index 63763760a9..3209c8e25f 100644 --- a/core/destructors/destructors-docs.factor +++ b/core/destructors/destructors-docs.factor @@ -7,7 +7,7 @@ HELP: debug-leaks? { $see-also "tools.destructors" } ; HELP: disposable -{ $class-description "Parent class for disposable resources. This class has three slots:" +{ $class-description "Parent class for disposable resources. This class has two slots:" { $list { { $slot "disposed" } " - boolean. Set to true by " { $link dispose } ". Assert that it is false with " { $link check-disposed } "." } { { $slot "continuation" } " - current continuation at construction time, for debugging. Set by " { $link new-disposable } " if " { $link debug-leaks? } " is on." }