diff --git a/notmuch/src/lib.rs b/notmuch/src/lib.rs index 3203c93..cd461e5 100644 --- a/notmuch/src/lib.rs +++ b/notmuch/src/lib.rs @@ -518,7 +518,7 @@ impl Notmuch { "--format=json", 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. let s = String::from_utf8_lossy(&slice); let mut deserializer = serde_json::Deserializer::from_str(&s); @@ -537,7 +537,7 @@ impl Notmuch { &format!("--part={}", part), 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. let s = String::from_utf8_lossy(&slice); let mut deserializer = serde_json::Deserializer::from_str(&s);