From 99a104517dd034075382bf53eb0a4ca14442390f Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 2 Dec 2023 16:35:05 -0800 Subject: [PATCH] notmuch: comment typo --- notmuch/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);