summaryrefslogtreecommitdiff
path: root/artima/scheme/scheme27.ss
diff options
context:
space:
mode:
authormichele.simionato <devnull@localhost>2009-06-02 13:40:46 +0000
committermichele.simionato <devnull@localhost>2009-06-02 13:40:46 +0000
commit01b53681d84a0da8af948553674c66e1f45e04e0 (patch)
treeef93f3db3506bf752944ebfa6cee709d2c09ddcc /artima/scheme/scheme27.ss
parent1acfc8e3c06f500c738d8550def3ac16ece77dc7 (diff)
downloadmicheles-01b53681d84a0da8af948553674c66e1f45e04e0.tar.gz
Fixed a lot of misprints signaled by Marco Maggi
Diffstat (limited to 'artima/scheme/scheme27.ss')
-rw-r--r--artima/scheme/scheme27.ss10
1 files changed, 5 insertions, 5 deletions
diff --git a/artima/scheme/scheme27.ss b/artima/scheme/scheme27.ss
index 2f1828e..edc0b6a 100644
--- a/artima/scheme/scheme27.ss
+++ b/artima/scheme/scheme27.ss
@@ -54,10 +54,10 @@ syntax object with the ``syntax->datum`` primitive::
> (equal? (syntax->datum syntax-expr) '(display "hello"))
#t
-Different syntax-objects can be equivalent: for instance
-the improper list of syntax objects ``(cons #'display (cons #'"hello" #'()))``
-is equivalent to the syntax object ``#'(display "hello")`` in
-the sense that both corresponds to the same datum::
+Different syntax-objects can be equivalent: for instance the improper
+list of syntax objects ``(cons #'display (cons #'"hello" #'()))`` is
+equivalent to the syntax object ``#'(display "hello")`` in the sense
+that both corresponds to the same datum::
> (equal? (syntax->datum (cons #'display (cons #'"hello" #'())))
(syntax->datum #'(display "hello")))
@@ -109,7 +109,7 @@ by using an identifier::
#<syntax (display "hello")
(the meaning of the lexical context in ``datum->syntax`` is tricky and
-I will go back to that in future episodes).
+I will go back to that in the next episode).
What ``syntax-match`` really is
--------------------------------------------------------------