Skip to content

Commit 0fefd38

Browse files
committed
fix(reporter): demote another Self::finish doc link
`[\`Self::finish\`]` on `GroupedReporterBuilder` resolves against the builder struct (which has no `finish` method), so `cargo doc -D warnings` rejected it. Replaced with prose. Re-ran `RUSTDOCFLAGS=-D warnings cargo doc --workspace --no-deps` and the workspace docs build cleanly. https://claude.ai/code/session_01EAhpw6TzUWExMeF7hdwuF3
1 parent f2fea5d commit 0fefd38

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • crates/vite_task/src/session/reporter/grouped

crates/vite_task/src/session/reporter/grouped/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ pub struct GroupedReporterBuilder {
2626

2727
impl GroupedReporterBuilder {
2828
/// Grouped mode buffers child output and flushes it through `writer`
29-
/// in [`Self::finish`]. The pipe writers themselves (see
30-
/// `LeafExecutionReporter::start`) strip ANSI on the way into the buffer, so by the
31-
/// time the buffer reaches `writer` it already matches the terminal's
32-
/// colour capability. `writer` is therefore stored unwrapped.
29+
/// at finish time. The pipe writers themselves (see
30+
/// `LeafExecutionReporter::start`) strip ANSI on the way into the buffer,
31+
/// so by the time the buffer reaches `writer` it already matches the
32+
/// terminal's colour capability. `writer` is therefore stored unwrapped.
3333
pub fn new(
3434
workspace_path: Arc<AbsolutePath>,
3535
writer: Box<dyn Write>,

0 commit comments

Comments
 (0)