1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-26 08:41:47 -07:00

Fix typo.

Copied from Perforce
 Change: 181102
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2013-03-08 18:09:24 +00:00
parent 61f99ec46a
commit 0f418f12e0

View file

@ -485,10 +485,10 @@ Weak hash tables
----------------
A :term:`weak-key hash table` has :term:`weak references (1)` to its
keys. If the key dies, the value corresponding that key is automatically
deleted from the table too. Similarly, a :term:`weak-value hash table`
has weak references to its values, and a :term:`doubly weak hash table`
has weak references to both.
keys. If the key dies, the value corresponding to that key is
automatically deleted from the table too. Similarly, a
:term:`weak-value hash table` has weak references to its values, and a
:term:`doubly weak hash table` has weak references to both.
In this section, I'll describe how to add all three types of weak hash
table to the toy Scheme interpreter. This requires a few far-reaching