Corrected small spelling error

This commit is contained in:
Amru Eliwat 2016-10-30 22:57:39 -04:00
parent 0401e0d5f0
commit 28a62c0d3c

View File

@ -479,7 +479,7 @@ sqr ;; => #<procedure (sqr x)>
;; Functors
;; Functors are high level modules that can be parameterized by other modules
;; Following functor requires another module named 'M' that provides a funtion called 'multiply'
;; Following functor requires another module named 'M' that provides a function called 'multiply'
;; The functor itself exports a generic function 'square'
(functor (squaring-functor (M (multiply))) (square)
(import scheme M)