From d0175722e837a7dd5c9d8a942aa31b569e19291e Mon Sep 17 00:00:00 2001 From: Stephen Chang Date: Wed, 17 Aug 2011 02:07:43 -0400 Subject: [PATCH] fix lazy.scrbl so it compiles properly --- collects/lazy/lazy.scrbl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/collects/lazy/lazy.scrbl b/collects/lazy/lazy.scrbl index c6e1007960..3dc23e4d5b 100644 --- a/collects/lazy/lazy.scrbl +++ b/collects/lazy/lazy.scrbl @@ -1,8 +1,8 @@ #lang scribble/doc -@(require (for-label (except-in lazy delay force) +@(require (for-label (except-in lazy) (only-in lazy/force ! !! !list !!list) - scheme/contract - (only-in scheme/promise promise?))) + racket/contract + (only-in racket/promise promise?))) @(define-syntax-rule (deflazy mod def id) (begin @@ -50,7 +50,7 @@ lazy Function applications are delayed, and promises are automatically forced. The language provides bindings that are equivalent to most of -the @racketmodname[mzscheme] and @racketmodname[scheme/list] +the @racketmodname[racket/base] and @racketmodname[racket/list] libraries. Primitives are strict in the expected places; struct constructors are lazy; @racket[if], @racket[and], @racket[or] @|etc| are plain (lazy) functions. Strict functionality is provided as-is: