Skip to content

Commit 691926f

Browse files
committed
fix: another broken intra-doc link uncovered by --document-private-items
CI runs `cargo doc --document-private-items` which catches links on private items (the previous fix only covered public items). The `row_groups_pruned_dynamic` field's doc comment referenced `[\`row_group_pruner\`]` — same-struct field, needs `Self::` to resolve.
1 parent 68f70ba commit 691926f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

datafusion/datasource-parquet/src/push_decoder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ pub(crate) struct PushDecoderStreamState {
249249
/// contribute to the result. `None` when the scan has no dynamic
250250
/// predicate or only one decoder run.
251251
pub(crate) row_group_pruner: Option<RowGroupPruner>,
252-
/// Count of row groups skipped at runtime by [`row_group_pruner`].
252+
/// Count of row groups skipped at runtime by [`Self::row_group_pruner`].
253253
pub(crate) row_groups_pruned_dynamic: Count,
254254
}
255255

0 commit comments

Comments
 (0)