From: Nick Papadakis Date: Tue, 16 Nov 1993 21:59:15 +0000 (+0000) Subject: Minor typo, weak-pairs xref in hash table intro X-Git-Tag: 20090517-FFI~7495 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=29a14c29086f7952921a33fec9f0bdea8542a35e;p=mit-scheme.git Minor typo, weak-pairs xref in hash table intro --- diff --git a/v7/doc/ref-manual/scheme.texinfo b/v7/doc/ref-manual/scheme.texinfo index da1618fde..9048234bd 100644 --- a/v7/doc/ref-manual/scheme.texinfo +++ b/v7/doc/ref-manual/scheme.texinfo @@ -2,7 +2,7 @@ @iftex @finalout @end iftex -@comment $Id: scheme.texinfo,v 1.37 1993/11/12 20:16:27 nick Exp $ +@comment $Id: scheme.texinfo,v 1.38 1993/11/16 21:59:15 nick Exp $ @comment %**start of header (This is for running Texinfo on a region.) @setfilename scheme @settitle MIT Scheme Reference @@ -7881,7 +7881,7 @@ otherwise returns @code{#f}. @deffnx {procedure+} false? object @cindex false, predicate for @cindex inverse, of boolean object -These procedures returns @code{#t} if @var{object} is false; otherwise +These procedures return @code{#t} if @var{object} is false; otherwise they return @code{#f}. In other words they @emph{invert} boolean values. These two procedures have identical semantics; their names are different to give different connotations to the test. @@ -9105,7 +9105,7 @@ predicate that is used to compare keys, and whether or not the table allows its keys to be reclaimed by the garbage collector. If a table prevents its keys from being reclaimed by the garbage collector, it is said to hold its keys @dfn{strongly}; otherwise it holds its keys -@dfn{weakly}. +@dfn{weakly} (@pxref{Weak Pairs}). @deffn {procedure+} make-eq-hash-table [initial-size] @findex eq?