Fix some "`" code markup

This commit is contained in:
Alexander Krotov
2020-02-18 05:06:11 +03:00
parent cda8158bec
commit 6b6be3b03d
2 changed files with 2 additions and 2 deletions

View File

@@ -598,7 +598,7 @@ impl Imap {
let mut list = if let Some(ref mut session) = &mut *self.session.lock().await {
// fetch messages with larger UID than the last one seen
// (`UID FETCH lastseenuid+1:*)`, see RFC 4549
// `(UID FETCH lastseenuid+1:*)`, see RFC 4549
let set = format!("{}:*", last_seen_uid + 1);
match session.uid_fetch(set, PREFETCH_FLAGS).await {
Ok(list) => list,