From 4901c6714ee6136aeff451cc2a0bd35e3993a481 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sat, 3 Nov 2012 15:40:15 -0600 Subject: [PATCH] documentation: correcting my broken example for heap-copy --- collects/data/scribblings/heap.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/data/scribblings/heap.scrbl b/collects/data/scribblings/heap.scrbl index 7bffe723cf..2013b7ae19 100644 --- a/collects/data/scribblings/heap.scrbl +++ b/collects/data/scribblings/heap.scrbl @@ -136,7 +136,7 @@ heap's order. The heap is not modified. @defproc[(heap-copy [h heap?]) heap?]{ Makes a copy of heap @racket[h]. - +@examples[#:eval the-eval (define word-heap (make-heap string<=?)) (heap-add! word-heap "pile" "mound" "agglomerate" "cumulation") (define a-copy (heap-copy word-heap))