From 7cf563c4d9a2b7842fa2ae855509d421975324b6 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Tue, 24 Jan 2012 08:28:53 -0600 Subject: [PATCH] fix some typos in a comment --- collects/redex/private/match-a-pattern.rkt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/collects/redex/private/match-a-pattern.rkt b/collects/redex/private/match-a-pattern.rkt index 32b06ade70..75d7972c23 100644 --- a/collects/redex/private/match-a-pattern.rkt +++ b/collects/redex/private/match-a-pattern.rkt @@ -38,14 +38,14 @@ It might seem like it would turn into something like this: (list (repeat (name any_1 any) ..._1 #f) (repeat (name any_1 any) ..._2 #f)) -but the _1 and _2 are actually not right, since the x_1 name -will force the two ellipses lengths to be the same. So, this -must turn into this pattern: +but the _1 and _2 are actually not as specific as they could be, +since the any_1 name will force the two ellipses lengths to be +the same. So, this must turn into this pattern: (list (repeat (name any_1 any) ..._1 #f) (repeat (name any_1 any) ..._1 #f)) -Similarly, if there are superflous names, they are delete. For +Similarly, if there are superflous names, they are deleted. For example, this source pattern: (any_1 ..._1)