fix(narrated): put URLs in their own line

This makes it easier for screen readers to access/visit.
This commit is contained in:
Kat Marchán 2023-04-18 08:44:14 -07:00
parent be3b254751
commit adbff65e4e
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ impl NarratableReportHandler {
writeln!(f, "diagnostic code: {}", code)?;
}
if let Some(url) = diagnostic.url() {
writeln!(f, "For more details, see {}", url)?;
writeln!(f, "For more details, see:\n{}", url)?;
}
Ok(())
}