Skip to content

Commit 6cd4bb8

Browse files
committed
fix typo in comment
1 parent 98b8c07 commit 6cd4bb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generate_xml.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn generate_xml<O: Write, I: Read>(
1919
open_markup(&mut out, category)?;
2020
// Write one record for each entry in csv
2121
let mut record = csv::StringRecord::new();
22-
// We reuse with buffer to avoid allocations in case we need to escape character data.
22+
// We reuse this buffer to avoid allocations in case we need to escape character data.
2323
let mut char_data_buf = String::new();
2424
while input.read_record(&mut record)? {
2525
write_record(

0 commit comments

Comments
 (0)