Skip to content

Commit 5412a08

Browse files
committed
more
Signed-off-by: Andrew Duffy <andrew@a10y.dev>
1 parent 29a76c5 commit 5412a08

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

vortex-array/src/arrays/patched/array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pub struct PatchedArray {
108108
/// should be subtracted out of the remaining offsets to get their final position in the
109109
/// executed array.
110110
pub(super) offset: usize,
111-
/// Total length.
111+
/// Length of the array
112112
pub(super) len: usize,
113113

114114
/// lane offsets. The PType of these MUST be u32

vortex-python/src/io.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ impl PyVortexWriteOptions {
279279
/// >>> vx.io.VortexWriteOptions.default().write(sprl, "chonky.vortex")
280280
/// >>> import os
281281
/// >>> os.path.getsize('chonky.vortex')
282-
/// 215972
282+
/// 216004
283283
/// ```
284284
///
285285
/// Wow, Vortex manages to use about two bytes per integer! So advanced. So tiny.
@@ -291,7 +291,7 @@ impl PyVortexWriteOptions {
291291
/// ```python
292292
/// >>> vx.io.VortexWriteOptions.compact().write(sprl, "tiny.vortex")
293293
/// >>> os.path.getsize('tiny.vortex')
294-
/// 55088
294+
/// 55120
295295
/// ```
296296
///
297297
/// Random numbers are not (usually) composed of random bytes!

0 commit comments

Comments
 (0)