remove extra reference

This commit is contained in:
yggverse 2025-02-12 18:15:40 +02:00
parent d3271797c9
commit 2badd54a1a

View file

@ -109,7 +109,7 @@ fn crawl(source: &str, target: &str, output: &Output) -> Result<(), Box<dyn Erro
} }
let mut buffer = String::from("##"); // correct heading levels let mut buffer = String::from("##"); // correct heading levels
File::open(&format!("{path}{name}"))?.read_to_string(&mut buffer)?; File::open(format!("{path}{name}"))?.read_to_string(&mut buffer)?;
data.push(buffer); data.push(buffer);
total += 1; total += 1;