From 390e48869ef124f8cb5ec1c27a6c26b545020aa4 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Thu, 18 Jun 2026 11:25:20 +0200 Subject: [PATCH] pvebc: Fix cargo doc warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit $ cargo doc ... warning: unclosed HTML tag `u8` --> pvebc/src/ebc_utils.rs:25:43 | 25 | /// Read all data from a reader into a Vec | ^^^^ | = note: `#[warn(rustdoc::invalid_html_tags)]` on by default help: try marking as source code | 25 | /// Read all data from a reader into a `Vec` | + + Reviewed-by: Jan Höppner Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- rust/pvebc/src/ebc_utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/pvebc/src/ebc_utils.rs b/rust/pvebc/src/ebc_utils.rs index 8d5c89cb..23785d8c 100644 --- a/rust/pvebc/src/ebc_utils.rs +++ b/rust/pvebc/src/ebc_utils.rs @@ -22,7 +22,7 @@ pub fn get_reader(filepath: &Path) -> Result> { .with_context(|| format!("unable to get reader from {:?}", filepath)) } -/// Read all data from a reader into a Vec +/// Read all data from a reader into a `Vec` pub fn get_data(rd_in: &mut Box) -> Result> { let mut data_in = Vec::new(); rd_in