We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67e2bae commit 1bc094cCopy full SHA for 1bc094c
bson/src/main/org/bson/io/ByteBufferBsonInput.java
@@ -193,7 +193,7 @@ private int computeCStringLength(final int prevPos) {
193
194
// `>>> 3` means dividing without remainder by `Long.BYTES` because `Long.BYTES` is 2^3
195
int chunks = (limit - pos) >>> 3;
196
- // Process 8 bytes at a time.
+ // Process `Long.BYTES` at a time.
197
for (int i = 0; i < chunks; i++) {
198
long word = buffer.getLong(pos);
199
/*
0 commit comments