From 232eaa43174794fafaf501377fcc18fa97d7f7d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Thu, 22 Jun 2017 17:55:27 +0200 Subject: [PATCH] Fixed typo in the docs. --- .travis.yml | 1 + scribblings/syntax-parse-pattern-expanders.scrbl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8f0a8af..33ab3b3 100644 --- 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 index 48aa339..cf8f5fc 100644 --- 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 ...].}