Fixed various spelling errors.

original commit: c9519fd11300b07292df8619e86f48533eff6e4d
This commit is contained in:
David Van Horn 2011-02-02 14:56:42 -05:00 committed by Sam Tobin-Hochstadt
parent ef64dab201
commit 61f9f1203b
2 changed files with 2 additions and 2 deletions

View File

@ -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)))

View File

@ -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.
|#