summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGeoff Liu <cangming.liu@gmail.com>2016-10-30 23:34:16 -0400
committerGitHub <noreply@github.com>2016-10-30 23:34:16 -0400
commit66f2062b09c2b37f823610d800476bb882d5194f (patch)
treec5d4353c588cc91719258c10a5a68945eb375b9a
parent0401e0d5f0668c5dcec53146c7bcabbe3be30e87 (diff)
parent28a62c0d3c0d7f31eda2d9baaf7c76d3823c8fd3 (diff)
Merge pull request #2548 from amrue/chicken-en
[CHICKEN/en] Corrected small spelling error
-rw-r--r--CHICKEN.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHICKEN.html.markdown b/CHICKEN.html.markdown
index c6a3a914..080527a9 100644
--- a/CHICKEN.html.markdown
+++ b/CHICKEN.html.markdown
@@ -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)