notmuch: comment typo

This commit is contained in:
Bill Thiede 2023-12-02 16:35:05 -08:00
parent c3692cadec
commit 99a104517d

View File

@ -518,7 +518,7 @@ impl Notmuch {
"--format=json", "--format=json",
query, query,
])?; ])?;
// Notmuch returns JSON with invalid unicode. So we lossy convert it to a string here an // Notmuch returns JSON with invalid unicode. So we lossy convert it to a string here and
// use that for parsing in rust. // use that for parsing in rust.
let s = String::from_utf8_lossy(&slice); let s = String::from_utf8_lossy(&slice);
let mut deserializer = serde_json::Deserializer::from_str(&s); let mut deserializer = serde_json::Deserializer::from_str(&s);
@ -537,7 +537,7 @@ impl Notmuch {
&format!("--part={}", part), &format!("--part={}", part),
query, query,
])?; ])?;
// Notmuch returns JSON with invalid unicode. So we lossy convert it to a string here an // Notmuch returns JSON with invalid unicode. So we lossy convert it to a string here and
// use that for parsing in rust. // use that for parsing in rust.
let s = String::from_utf8_lossy(&slice); let s = String::from_utf8_lossy(&slice);
let mut deserializer = serde_json::Deserializer::from_str(&s); let mut deserializer = serde_json::Deserializer::from_str(&s);