Skip to content

Commit 1a39b35

Browse files
committed
fix(benchmarks-website/migrate): qualify Source::Local intra-doc link
`RUSTDOCFLAGS="-D warnings" cargo doc` fails the workspace docs build with `unresolved link to Source::Local` on the module-level `//!` comment in `migrate/src/source.rs`. Rustdoc can't resolve the shorthand from the inner doc comment scope; qualify the link as `crate::source::Source::Local` so the docs build is clean. Verified locally with: RUSTDOCFLAGS="-D warnings" cargo doc --profile ci --no-deps \ -p vortex-bench-server -p vortex-bench-migrate passes cleanly. Signed-off-by: Claude <noreply@anthropic.com>
1 parent d6032f0 commit 1a39b35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchmarks-website/migrate/src/source.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//! path synchronous; the binary's hot path is single-threaded
1010
//! per-source already (DuckDB is a single-writer).
1111
//!
12-
//! For tests and offline runs, [`Source::Local`] accepts a local
12+
//! For tests and offline runs, [`Source::Local`](crate::source::Source::Local) accepts a local
1313
//! directory of dumps; the migrator's `--source` flag picks the
1414
//! variant.
1515

0 commit comments

Comments
 (0)