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