From 8bdf7005b8c7c18900b7f89acad8609f3acec3fb Mon Sep 17 00:00:00 2001 From: Hunter Bown Date: Sun, 1 Mar 2026 20:04:48 -0600 Subject: [PATCH] fix(rustdoc): resolve bare URL and invalid HTML tag warnings --- src/responses_api_proxy/mod.rs | 2 +- src/responses_api_proxy/read_api_key.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/responses_api_proxy/mod.rs b/src/responses_api_proxy/mod.rs index f9cc2528..abeae463 100644 --- a/src/responses_api_proxy/mod.rs +++ b/src/responses_api_proxy/mod.rs @@ -27,7 +27,7 @@ pub struct Args { #[arg(long)] pub port: Option, - /// Path to a JSON file to write startup info (single line). Includes {"port": }. + /// Path to a JSON file to write startup info (single line). Includes `{"port": 12345}`. #[arg(long, value_name = "FILE")] pub server_info: Option, diff --git a/src/responses_api_proxy/read_api_key.rs b/src/responses_api_proxy/read_api_key.rs index 6117c9af..2684241c 100644 --- a/src/responses_api_proxy/read_api_key.rs +++ b/src/responses_api_proxy/read_api_key.rs @@ -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 +/// /// /// 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