commit 2af1256427b78ae8520979866a0fbea6df0d3d6d
parent 22a1abd4fa744e02c4c309be9ebef2097b9c20fe
Author: Greg Hendershott <greghendershott@gmail.com>
Date: Fri, 11 Jul 2014 08:54:45 -0400
Fix more typos
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/index.rkt b/index.rkt
@@ -951,7 +951,7 @@ back.
@subsubsection{Another example}
-Finally, here's a variation that accepts an arbitary number of name
+Finally, here's a variation that accepts an arbitrary number of name
parts to be joined with hyphens:
@i[
@@ -1237,7 +1237,7 @@ messages when used in error. Let's try to do that here.
Not too bad. Of course, the version with error-checking is quite a bit
longer. Error-checking code generally tends to obscure the logic, and
-does here. Fortuantely we'll soon see how @racket[syntax-parse] can
+does here. Fortunately we'll soon see how @racket[syntax-parse] can
help mitigate that, in much the same way as contracts in normal
Racket or types in Typed Racket.
@@ -1591,7 +1591,7 @@ But for now I'll focus on improving the previous parts.
@section{References and Acknowledgments}
-Eli Barzliay's blog post,
+Eli Barzilay's blog post,
@hyperlink["http://blog.racket-lang.org/2011/04/writing-syntax-case-macros.html" "Writing
‘syntax-case’ Macros"], helped me understand many key details and
concepts, and inspired me to use a "bottom-up" approach.