We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98b8c07 commit 6cd4bb8Copy full SHA for 6cd4bb8
src/generate_xml.rs
@@ -19,7 +19,7 @@ pub fn generate_xml<O: Write, I: Read>(
19
open_markup(&mut out, category)?;
20
// Write one record for each entry in csv
21
let mut record = csv::StringRecord::new();
22
- // We reuse with buffer to avoid allocations in case we need to escape character data.
+ // We reuse this buffer to avoid allocations in case we need to escape character data.
23
let mut char_data_buf = String::new();
24
while input.read_record(&mut record)? {
25
write_record(
0 commit comments