From b2f713257701b986364ed3469f7cf498066df5e8 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Wed, 27 Apr 2011 10:08:57 -0400 Subject: [PATCH] Fix typos in ephemeron docs. --- collects/scribblings/reference/memory.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/reference/memory.scrbl b/collects/scribblings/reference/memory.scrbl index 9c4f60750a..0a8c7fe9c0 100644 --- a/collects/scribblings/reference/memory.scrbl +++ b/collects/scribblings/reference/memory.scrbl @@ -39,9 +39,9 @@ Returns @racket[#t] if @racket[v] is a weak box, @racket[#f] otherwise.} An @deftech{ephemeron} @cite{Hayes97} is a generalization of a @tech{weak box} (see @secref["weakbox"]). Instead of just containing -one value, an emphemeron holds two values: one that is considered the +one value, an ephemeron holds two values: one that is considered the value of the ephemeron and another that is the ephemeron's key. Like -the value in a weak box, the value in and ephemeron may be replaced by +the value in a weak box, the value in an ephemeron may be replaced by @racket[#f], but when the @emph{key} is no longer reachable (except possibly via weak references) instead of when the value is no longer reachable.