From 61f9f1203b1c22fe060b8d30565d30620d2cffcd Mon Sep 17 00:00:00 2001 From: David Van Horn Date: Wed, 2 Feb 2011 14:56:42 -0500 Subject: [PATCH] Fixed various spelling errors. original commit: c9519fd11300b07292df8619e86f48533eff6e4d --- collects/mzlib/kw.rkt | 2 +- collects/mzlib/thread.rkt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/mzlib/kw.rkt b/collects/mzlib/kw.rkt index 6645627..014f596 100644 --- a/collects/mzlib/kw.rkt +++ b/collects/mzlib/kw.rkt @@ -128,7 +128,7 @@ [else (ormap (lambda (k) (and (assq k rests) #t)) ; suggested? (car (cddddr processed-spec)))]))) (define (make-keyword-get-expr key rest default known-vars) - ;; expand (for id macros) and check if its a simple expression, because if + ;; expand (for id macros) and check if it's a simple expression, because if ;; it is, evaluation cannot have side-effects and we can use keyword-get* (define default* (local-expand default 'expression (cons #'#%app known-vars))) diff --git a/collects/mzlib/thread.rkt b/collects/mzlib/thread.rkt index 4c4d005..c4bcf7a 100644 --- a/collects/mzlib/thread.rkt +++ b/collects/mzlib/thread.rkt @@ -7,7 +7,7 @@ #| t accepts a function, f, and creates a thread. It returns the thread and a - function, g. When g is applied it passes it's argument to f, and evaluates + function, g. When g is applied it passes its argument to f, and evaluates the call of f in the time of the thread that was created. Calls to g do not block. |#