Skip to content

Commit 62c4df4

Browse files
committed
chore: trivial error message fix
Signed-off-by: Andrew Duffy <[email protected]>
1 parent 03cea8b commit 62c4df4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vortex-buffer/src/buffer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ impl<T> Buffer<T> {
293293
);
294294
}
295295
if end > len {
296-
vortex_panic!("range end out of bounds: {:?} <= {:?}", end, len);
296+
vortex_panic!("range end out of bounds: {:?} > {:?}", end, len);
297297
}
298298

299299
if end == begin {

0 commit comments

Comments
 (0)