This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


The following commit(s) were added to refs/heads/main by this push:
     new aa9506f97b6 Fix the problem of the left and right boundary of the 
value (#409)
aa9506f97b6 is described below

commit aa9506f97b6eb8a143dd48e56279b2277decd4fa
Author: sunheyi <[email protected]>
AuthorDate: Wed Feb 15 09:36:52 2023 +0800

    Fix the problem of the left and right boundary of the value (#409)
---
 docs/concepts-messaging.md                          | 4 ++--
 versioned_docs/version-2.11.x/concepts-messaging.md | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/concepts-messaging.md b/docs/concepts-messaging.md
index 4dbed234670..11fa5f009f2 100644
--- a/docs/concepts-messaging.md
+++ b/docs/concepts-messaging.md
@@ -667,8 +667,8 @@ Example:
 Suppose we have 2 consumers (C1 and C2) each specified their ranges, then:
 
 ```
-C1 = [0, 16384), (32768, 49152]
-C2 = [16384, 32768), (49,152, 65536]
+C1 = [0, 16384), [32768, 49152)
+C2 = [16384, 32768), [49152, 65536)
  
  0               16,384            32,768           49,152             65,536
  |------- C1 ------|------- C2 ------|------- C1 ------|------- C2 ------|
diff --git a/versioned_docs/version-2.11.x/concepts-messaging.md 
b/versioned_docs/version-2.11.x/concepts-messaging.md
index 764cf3aa757..a1dc0f002cb 100644
--- a/versioned_docs/version-2.11.x/concepts-messaging.md
+++ b/versioned_docs/version-2.11.x/concepts-messaging.md
@@ -722,8 +722,8 @@ Example:
 Suppose we have 2 consumers (C1 and C2) each specified their ranges, then:
 
 ```
-C1 = [0, 16384), (32768, 49152]
-C2 = [16384, 32768), (49,152, 65536]
+C1 = [0, 16384), [32768, 49152)
+C2 = [16384, 32768), [49152, 65536)
  
  0               16,384            32,768           49,152             65,536
  |------- C1 ------|------- C2 ------|------- C1 ------|------- C2 ------|

Reply via email to