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