commit 232eaa43174794fafaf501377fcc18fa97d7f7d2
parent 8b762275c08c966fc74ca05127741e4927349c45
Author: Georges Dupéron <georges.duperon@gmail.com>
Date: Thu, 22 Jun 2017 17:55:27 +0200
Fixed typo in the docs.
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
@@ -30,6 +30,7 @@ env:
- RACKET_VERSION=6.6
- RACKET_VERSION=6.7
- RACKET_VERSION=6.8
+ - RACKET_VERSION=RELEASE
- RACKET_VERSION=HEAD
matrix:
diff --git a/scribblings/syntax-parse-pattern-expanders.scrbl b/scribblings/syntax-parse-pattern-expanders.scrbl
@@ -25,7 +25,7 @@
match any list of @racket[1]s and @racket[2]s in any order, but it complains
that the attribute is bound twice, since both alternatives within the
@racket[~or] are understood as separate patterns, not mutually-exclusive
- choices. On the other hand @racket[({~or {~and 1 x} {~and 2 x}} ...)] still
+ choices. On the other hand @racket[({~either {~and 1 x} {~and 2 x}} ...)] still
matches @racket[(2 1 1 1 2 2 1)], and successfully binds all the elements to
@racket[x ...].}