From 31ff6e93bb91e17f216829370508fc729a369ddd Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Wed, 11 Jun 2008 20:30:52 -0500 Subject: [PATCH] More help updateS --- core/effects/effects-docs.factor | 1 + extra/help/handbook/handbook.factor | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/core/effects/effects-docs.factor b/core/effects/effects-docs.factor index 66beae443f..bee2f5f2fd 100644 --- a/core/effects/effects-docs.factor +++ b/core/effects/effects-docs.factor @@ -11,6 +11,7 @@ $nl "Stack elements in a stack effect are ordered so that the top of the stack is on the right side. Each value can be named by a data type or description. The following are some examples of value names:" { $table { { { $snippet "?" } } "a boolean" } + { { { $snippet "<=>" } } { "an ordering sepcifier; see " { $link "order-specifiers" } } } { { { $snippet "elt" } } "an object which is an element of a sequence" } { { { $snippet "m" } ", " { $snippet "n" } } "an integer" } { { { $snippet "obj" } } "an object" } diff --git a/extra/help/handbook/handbook.factor b/extra/help/handbook/handbook.factor index 5fc1fff210..dfbb7a12b8 100755 --- a/extra/help/handbook/handbook.factor +++ b/extra/help/handbook/handbook.factor @@ -40,8 +40,8 @@ $nl "Common terminology and abbreviations used throughout Factor and its documentation:" { $table { "Term" "Definition" } - { "alist" { "an association list. See " { $link "alists" } } } - { "assoc" "an associative mapping" } + { "alist" { "an association list; see " { $link "alists" } } } + { "assoc" { "an associative mapping; see " { $link "assocs" } } } { "associative mapping" { "an object whose class implements the " { $link "assocs-protocol" } } } { "boolean" { { $link t } " or " { $link f } } } { "class" { "a set of objects identified by a " { $emphasis "class word" } " together with a discriminating predicate. See " { $link "classes" } } } @@ -50,8 +50,9 @@ $nl { "generic word" { "a word whose behavior depends can be specialized on the class of one of its inputs. See " { $link "generic" } } } { "method" { "a specialized behavior of a generic word on a class. See " { $link "generic" } } } { "object" { "any datum which can be identified" } } + { "ordering specifier" { "see " { $link "order-specifiers" } } } { "pathname string" { "an OS-specific pathname which identifies a file" } } - { "sequence" { "an object whose class implements the " { $link "sequence-protocol" } } } + { "sequence" { "a sequence; see " { $link "sequence-protocol" } } } { "slot" { "a component of an object which can store a value" } } { "stack effect" { "a pictorial representation of a word's inputs and outputs, for example " { $snippet "+ ( x y -- z )" } ". See " { $link "effects" } } } { "true value" { "any object not equal to " { $link f } } }