Skip to content

Commit 5ac9373

Browse files
committed
docs: removed unecessary comment
1 parent 139e92d commit 5ac9373

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

questdb-rs/src/ingress/decimal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ impl DecimalSerializer for &rust_decimal::Decimal {
167167
// We skip the upper 3 bytes (which are sign-extended) and write the lower 13 bytes
168168
let mantissa = self.mantissa();
169169
out.push(13);
170-
out.extend_from_slice(&mantissa.to_be_bytes()[3..]); // Skip upper 4 bytes, write lower 12
170+
out.extend_from_slice(&mantissa.to_be_bytes()[3..]);
171171

172172
Ok(())
173173
}

0 commit comments

Comments
 (0)