diff options
author | scgilardi <scgilardi@gmail.com> | 2008-06-08 00:17:38 +0000 |
---|---|---|
committer | scgilardi <scgilardi@gmail.com> | 2008-06-08 00:17:38 +0000 |
commit | dc97d581043750b92cfbafd784b01bee3d7fab9f (patch) | |
tree | 0982324b7b430834fee624c63780da1eb0af7476 | |
parent | 375f3b352c36e6ac45623bb3ed69b1e5f1888036 (diff) |
fix typos in lazy-seqs.clj
-rw-r--r-- | lazy-seqs.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lazy-seqs.clj b/lazy-seqs.clj index f92a7b51..6b4b4c7b 100644 --- a/lazy-seqs.clj +++ b/lazy-seqs.clj @@ -11,11 +11,11 @@ ;; Lazy sequences ;; ;; primes - based on the "naive" implemention described in [1] plus a -;; small "wheel" which eliminiates multiples of 2, 3, 5, and +;; small "wheel" which eliminates multiples of 2, 3, 5, and ;; 7 from consideration by incrementing past them. Also inspired ;; by code from Christophe Grand in [2]. ;; -;; fib - based on code from Rich Hickey at the Clojure wiki [3] +;; fibs - based on code from Rich Hickey at the Clojure wiki [3] ;; ;; [1] http://www.cs.hmc.edu/~oneill/papers/Sieve-JFP.pdf ;; [2] http://clj-me.blogspot.com/2008/06/primes.html |