From be0d5d29f9c824052eced5d079a1ffe624ad6143 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Thu, 15 Sep 2022 08:27:11 -0500 Subject: error in md->org conversion --- README.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 4723c26..b2d799a 100644 --- a/README.org +++ b/README.org @@ -39,7 +39,7 @@ example apears at the end of the document, following the tutorial. > (defun all-primes () "Creates a generator that produces an infinite series of primes." - (filter! *'prime-p (range :from 2))) + (filter! #'prime-p (range :from 2))) > (take 10 (all-primes)) ;; (2 3 5 7 11 13 17 19 23 29) @@ -685,7 +685,7 @@ the previous section, you may be tempted to manually call =next= and =has-next-p= on your generators. If you must do this, you should use the =with-generator= macro: -#+end_srclisp +#+begin_src lisp > (with-generator (gen (seq "a1b2c3")) (when (gtwiwtg::has-next-p gen) -- cgit v1.2.3