Skip to content

Commit adbff65

Browse files
committedApr 18, 2023
fix(narrated): put URLs in their own line
This makes it easier for screen readers to access/visit.
1 parent be3b254 commit adbff65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/handlers/narratable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl NarratableReportHandler {
118118
writeln!(f, "diagnostic code: {}", code)?;
119119
}
120120
if let Some(url) = diagnostic.url() {
121-
writeln!(f, "For more details, see {}", url)?;
121+
writeln!(f, "For more details, see:\n{}", url)?;
122122
}
123123
Ok(())
124124
}

0 commit comments

Comments
 (0)
Please sign in to comment.