aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorColin Okay <59481711+cbeo@users.noreply.github.com>2020-07-10 13:22:06 -0500
committerGitHub <noreply@github.com>2020-07-10 13:22:06 -0500
commit82944ed170182f88f373c4a03fefac9a3ac6730b (patch)
treed96420b0340115f7a6a188acb5a73c2441285c2e /README.md
parentd54aa29b7869a4508ead4d608126637348d24872 (diff)
spelling.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 647eb71..b666e7c 100644
--- a/README.md
+++ b/README.md
@@ -45,20 +45,20 @@ example apears at the end of the document, following the tutorial.
```
-### Fun With Fibbonacci
+### Fun With Fibonacci
``` lisp
> (defun fibs ()
- "Creates an infinite series of Fibbonacci numbers."
+ "Creates an infinite series of Fibonacci numbers."
(from-recurrence
(lambda (n-1 n-2) (+ n-1 n-2))
1 0))
-;; First ten Fibbonacci numbers
+;; First ten Fibonacci numbers
> (take 10 (fibs)) ;; (1 2 3 5 8 13 21 34 55 89)
-;; Just the 40th Fibbonacci number, indexed from 0
+;; Just the 40th Fibonacci number, indexed from 0
> (car (pick-out '(40) (fibs))) ;; 267914296
```