fix(rustdoc): resolve bare URL and invalid HTML tag warnings

This commit is contained in:
Hunter Bown
2026-03-01 20:04:48 -06:00
parent 698ec1099c
commit 8bdf7005b8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ pub struct Args {
#[arg(long)]
pub port: Option<u16>,
/// Path to a JSON file to write startup info (single line). Includes {"port": <u16>}.
/// Path to a JSON file to write startup info (single line). Includes `{"port": 12345}`.
#[arg(long, value_name = "FILE")]
pub server_info: Option<PathBuf>,
+1 -1
View File
@@ -30,7 +30,7 @@ pub(crate) fn read_auth_header_from_stdin() -> Result<&'static str> {
/// We perform a low-level read with `read(2)` because `stdio::io::stdin()` has
/// an internal BufReader:
///
/// https://github.com/rust-lang/rust/blob/bcbbdcb8522fd3cb4a8dde62313b251ab107694d/library/std/src/io/stdio.rs#L250-L252
/// <https://github.com/rust-lang/rust/blob/bcbbdcb8522fd3cb4a8dde62313b251ab107694d/library/std/src/io/stdio.rs#L250-L252>
///
/// that can end up retaining a copy of stdin data in memory with no way to zero
/// it out, whereas we aim to guarantee there is exactly one copy of the API key