From 82944ed170182f88f373c4a03fefac9a3ac6730b Mon Sep 17 00:00:00 2001 From: Colin Okay <59481711+cbeo@users.noreply.github.com> Date: Fri, 10 Jul 2020 13:22:06 -0500 Subject: spelling. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'README.md') 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 ``` -- cgit v1.2.3