From f7c35489e99b4c51bd31f7cf3e318aa5c048b417 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 21 Mar 2013 21:26:54 -0700 Subject: [PATCH] compiler.units: fix documentation for pair of hash-sets. --- core/compiler/units/units-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/compiler/units/units-docs.factor b/core/compiler/units/units-docs.factor index 4696132579..8845dae7c2 100644 --- a/core/compiler/units/units-docs.factor +++ b/core/compiler/units/units-docs.factor @@ -50,10 +50,10 @@ HELP: remember-definition { $description "Saves the location of a definition and associates this definition with the current source file." } ; HELP: old-definitions -{ $var-description "Stores an assoc where the keys form the set of definitions which were defined by " { $link file } " the most recent time it was loaded." } ; +{ $var-description "Stores a pair of sets where the members form the set of definitions which were defined by " { $link file } " the most recent time it was loaded." } ; HELP: new-definitions -{ $var-description "Stores an assoc where the keys form the set of definitions which were defined so far by the current parsing of " { $link file } "." } ; +{ $var-description "Stores a pair of sets where the members form the set of definitions which were defined so far by the current parsing of " { $link file } "." } ; HELP: with-compilation-unit { $values { "quot" quotation } }