From 16bbc60944b6c2e300ce6f0d7328862936c70210 Mon Sep 17 00:00:00 2001 From: Greg Hendershott Date: Tue, 13 Nov 2012 13:24:11 -0500 Subject: [PATCH] Add tag for pattern-matching section --- main.rkt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.rkt b/main.rkt index e4b97f3..e860969 100644 --- a/main.rkt +++ b/main.rkt @@ -606,7 +606,7 @@ them available at compile time.} @; ---------------------------------------------------------------------------- @; ---------------------------------------------------------------------------- -@section{Pattern matching: syntax-case and syntax-rules} +@section[#:tag "pattern-matching"]{Pattern matching: syntax-case and syntax-rules} Most useful syntax transformers work by taking some input syntax, and rearranging the pieces into something else. As we saw, this is @@ -1493,8 +1493,8 @@ great. Improving it would require even more error code. (string-append s " snazzy suffix")) ;; User of the function: (misuse 0) -;; I goofed, and understand why! I hear the writer of the function is -;; happier. +;; I goofed, and understand why! I'm happier, and I hear the writer of +;; the function is happier, too. ) This is the best of both worlds.