summaryrefslogtreecommitdiffstats
path: root/books/Seasoned Schemer.page
diff options
context:
space:
mode:
authorbnewbold <bnewbold@ziggy.(none)>2010-01-24 03:08:23 -0500
committerbnewbold <bnewbold@ziggy.(none)>2010-01-24 03:08:23 -0500
commitcc9cdbee92aa6d148a1524ebccbd19d89f90e1d4 (patch)
tree8ffacfccdc9c227f12063f8175200a484dedc2c5 /books/Seasoned Schemer.page
parent45bd367f3652a89c93c3ce0f4f8169ff3d8e67f9 (diff)
downloadknowledge-cc9cdbee92aa6d148a1524ebccbd19d89f90e1d4.tar.gz
knowledge-cc9cdbee92aa6d148a1524ebccbd19d89f90e1d4.zip
books tweaks
Diffstat (limited to 'books/Seasoned Schemer.page')
-rw-r--r--books/Seasoned Schemer.page12
1 files changed, 6 insertions, 6 deletions
diff --git a/books/Seasoned Schemer.page b/books/Seasoned Schemer.page
index 655c44c..cebbdfc 100644
--- a/books/Seasoned Schemer.page
+++ b/books/Seasoned Schemer.page
@@ -11,7 +11,7 @@ The Seasoned Schemer
:by: Daniel Friedman and Matthias Felleisen
:Edition: First (1st)
-See also `Scheme </k/software/scheme/>`__. This book is a sequel
+See also `Scheme </software/scheme/>`_. This book is a sequel
to `The Little Schemer`_; The Reasoned Schemer is a paralel exploration of
logical programming.
@@ -27,12 +27,12 @@ work done in, but it's kind of like searching for anti-aliasing in digital
photos or scanning the edges of a wall for painting mistakes. Sometimes the
big picture is the whole point and it's worth putting up with small flaws.
-.. _The Little Schemer: /k/books/littleschemer/
+.. _The Little Schemer: Little+Schemer
Issues/Omissions
--------------------------
-The Y combinator function is never defined in this book, I had to copy it out of
-`The Little Schemer`_;
+The Y combinator function is never defined in this book, I had to copy it out
+of `The Little Schemer`_::
(define Y
(lambda (thing)
@@ -54,7 +54,7 @@ Also ``eqlist?``::
(else (and (eqlist? (car a) (car b)) (eqlist? (cdr a) (cdr b)))))))
MIT/GNU Scheme doesn't seem to have ``letcc`` or ``try``; I stuck with
-``call-with-current-continuation``:
+``call-with-current-continuation``::
(call-with-current-continuation (lambda (hook) ...)
; is the same as
@@ -138,7 +138,7 @@ The Twentieth Commandment
function that is equivalent but does not forget. Then, when you use it,
remember to forget.
-**I love that last sentence!**
+*I love that last sentence!*