From 923505380431ede8459908894f7bdab99170c795 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Mon, 18 Dec 2023 16:04:57 -0500 Subject: [PATCH] status: fix warning for unused doc comment rustdoc does not generate documentation for expression fields --- lib/src/status.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/status.rs b/lib/src/status.rs index a04f4171a..f59ccf011 100644 --- a/lib/src/status.rs +++ b/lib/src/status.rs @@ -64,7 +64,7 @@ impl From for OstreeImageReference { Self { sigverify: img.signature.into(), imgref: ostree_container::ImageReference { - /// SAFETY: We validated the schema in kube-rs + // SAFETY: We validated the schema in kube-rs transport: img.transport.as_str().try_into().unwrap(), name: img.image, },