From e41b235387bad6fb3f4b50a6870f49a483036139 Mon Sep 17 00:00:00 2001 From: Lemm <199086+Lem@users.noreply.github.com> Date: Fri, 18 Oct 2019 20:23:10 +0200 Subject: [PATCH 1/2] Fix typo in documentation data_times should be data_items for function "status" --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index 7c7aceb..fb9a10c 100644 --- a/src/client.rs +++ b/src/client.rs @@ -942,7 +942,7 @@ impl Session { /// - `UIDVALIDITY`: The unique identifier validity value of the mailbox (see [`Uid`]). /// - `UNSEEN`: The number of messages which do not have [`Flag::Seen`] set. /// - /// `data_times` is a space-separated list enclosed in parentheses. + /// `data_itmes` is a space-separated list enclosed in parentheses. pub fn status, S2: AsRef>( &mut self, mailbox_name: S1, From 39b8087b3c5531debc92646d99ff123aae6dac48 Mon Sep 17 00:00:00 2001 From: Lem <199086+Lem@users.noreply.github.com> Date: Fri, 18 Oct 2019 20:31:34 +0200 Subject: [PATCH 2/2] Update src/client.rs Fix typo in fix for typo. It's not 'data_times' or 'data_itmes'. It should be 'data_items'! Co-Authored-By: Jon Gjengset --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index fb9a10c..1059d9e 100644 --- a/src/client.rs +++ b/src/client.rs @@ -942,7 +942,7 @@ impl Session { /// - `UIDVALIDITY`: The unique identifier validity value of the mailbox (see [`Uid`]). /// - `UNSEEN`: The number of messages which do not have [`Flag::Seen`] set. /// - /// `data_itmes` is a space-separated list enclosed in parentheses. + /// `data_items` is a space-separated list enclosed in parentheses. pub fn status, S2: AsRef>( &mut self, mailbox_name: S1,