We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1b50d7 commit 1074601Copy full SHA for 1074601
1 file changed
vortex-array/src/arrays/listview/compute/take.rs
@@ -40,7 +40,7 @@ const REBUILD_DENSITY_THRESHOLD: f32 = 0.1;
40
/// The trade-off is that we may keep unreferenced elements in memory, but this is acceptable
41
/// since we're optimizing for read performance and the data isn't being copied.
42
///
43
-/// When the selection density drops below [`REBUILD_DENSITY_THRESHOLD`], we return `None` so
+/// When the selection density drops below `REBUILD_DENSITY_THRESHOLD`, we return `None` so
44
/// callers can fall back to [`TakeExecute`], which compacts `elements` via a rebuild. Dense
45
/// selections keep the cheap metadata-only path.
46
impl TakeReduce for ListView {
0 commit comments