turnbull: Add TODO

This commit is contained in:
RunasSudo 2023-11-11 22:06:01 +11:00
parent 8914cf3507
commit 793e6309cf
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ fn read_row_as_strings<R: BufRead>(reader: &mut R, buffer: &mut String) -> Vec<S
if let Some(entry_part) = entries_iter.next() { if let Some(entry_part) = entries_iter.next() {
if entry_part.ends_with('"') { if entry_part.ends_with('"') {
// End of quoted entry // End of quoted entry
// TODO: No support for escaping double quotes
full_entry.push_str(&entry_part[..(entry_part.len() - 1)]); full_entry.push_str(&entry_part[..(entry_part.len() - 1)]);
result.push(full_entry); result.push(full_entry);
break; break;