Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust/lance/src/io/exec/knn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ impl KNNVectorDistanceExec {
/// candidate set has nothing else to move. `k` feeds only the execute-time cut,
/// never the schema or plan properties, so the rest of the node carries over.
///
/// Returns an error for a zero `k` on a batch node, matching [`Self::try_new_batch`].
/// Returns an error for a zero `k` on a batch node, matching `try_new_batch`.
pub fn with_k(&self, k: usize) -> Result<Self> {
if self.is_batch && k == 0 {
return Err(Error::invalid_input(
Expand Down
Loading