Skip to content

Commit c27ee52

Browse files
authored
Fix grammar and punctuation in README.mdfix
1 parent 28f45c9 commit c27ee52

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ It's initial based on https://github.com/zeromax007/gpdb-roaringbitmap.
55

66

77
# Introduction
8-
Roaring bitmaps are compressed bitmaps which tend to outperform conventional compressed bitmaps such as WAH, EWAH or Concise. In some instances, roaring bitmaps can be hundreds of times faster and they often offer significantly better compression. They can even be faster than uncompressed bitmaps. More information https://github.com/RoaringBitmap/CRoaring .
8+
Roaring bitmaps are compressed bitmaps which tend to outperform conventional compressed bitmaps such as WAH, EWAH or Concise. In some instances, roaring bitmaps can be hundreds of times faster and they often offer significantly better compression. They can even be faster than uncompressed bitmaps. More information https://github.com/RoaringBitmap/CRoaring.
99

1010

1111
# Build
@@ -305,7 +305,7 @@ or
305305
<td><code>rb_index</code></td>
306306
<td><code>roaringbitmap,integer</code></td>
307307
<td><code>bigint</code></td>
308-
<td>Return the 0-based index of element in this roaringbitmap, or -1 if do not exists</td>
308+
<td>Return the 0-based index of element in this roaringbitmap, or -1 if do not exist</td>
309309
<td><code>rb_index('{1,2,3}',3)</code></td>
310310
<td><code>2</code></td>
311311
</tr>
@@ -547,7 +547,7 @@ or
547547
## roaringbitmap64
548548
### about roaringbitmap64 data type
549549

550-
roaringbitmap64是64位的Roaring bitmaps,格式定义参考https://github.com/RoaringBitmap/RoaringFormatSpec.
550+
​​roaringbitmap64​​ is a 64-bit Roaring bitmap implementation, and its format definition can be found in https://github.com/RoaringBitmap/RoaringFormatSpec.
551551
Logically, you could think of roaringbitmap64 data type as `bit(18446744073709551615)` just like roaringbitmap, and it should be noted that
552552
the bigint data added to bitmaps is considered to be unsigned. Within 64 bit bitmaps, numbers are ordered according to uint64.
553553
We order the numbers like 0, 1, ..., 9223372036854775807, -9223372036854775808, -9223372036854775807,..., -1.
@@ -795,7 +795,7 @@ or
795795
<td><code>rb64_index</code></td>
796796
<td><code>roaringbitmap64,bigint</code></td>
797797
<td><code>bigint</code></td>
798-
<td>Return the 0-based index of element in this roaringbitmap64, or -1 if do not exists</td>
798+
<td>Return the 0-based index of element in this roaringbitmap64, or -1 if do not exist</td>
799799
<td><code>rb64_index('{1,2,3}',3)</code></td>
800800
<td><code>2</code></td>
801801
</tr>

0 commit comments

Comments
 (0)