Fixed typo in the docs.

This commit is contained in:
Georges Dupéron 2017-06-22 17:55:27 +02:00
parent 8b762275c0
commit 232eaa4317
2 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@ env:
- RACKET_VERSION=6.6
- RACKET_VERSION=6.7
- RACKET_VERSION=6.8
- RACKET_VERSION=RELEASE
- RACKET_VERSION=HEAD
matrix:

View File

@ -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 ...].}