bgeng777 commented on code in PR #20508:
URL: https://github.com/apache/flink/pull/20508#discussion_r940855754


##########
docs/content/docs/libs/cep.md:
##########
@@ -754,7 +754,7 @@ The contiguity will be applied between elements accepted 
into such a pattern.
 To illustrate the above with an example, a pattern sequence `"a b+ c"` (`"a"` 
followed by any(non-deterministic relaxed) sequence of one or more `"b"`'s 
followed by a `"c"`) with
 input `"a", "b1", "d1", "b2", "d2", "b3" "c"` will have the following results:
 
- 1. **Strict Contiguity**: `{a b3 c}` -- the `"d1"` after `"b1"` causes `"b1"` 
to be discarded, the same happens for `"b2"` because of `"d2"`.
+ 1. **Strict Contiguity**: `{a b1 c}`, `{a b2 c}`, `{a b3 c}` - there's no 
adjacent `"b"`s.

Review Comment:
   there's -> there are



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to