From 1c62fd4f1e107eebea7f0d798827b75300e1fb10 Mon Sep 17 00:00:00 2001 From: sconnellcom Date: Fri, 16 Jan 2015 10:36:05 -0800 Subject: [PATCH] Correct sample code typo Replace a period with a comma in the Client.GetMessages method call --- Examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples.md b/Examples.md index 195d66f..3b46fc9 100644 --- a/Examples.md +++ b/Examples.md @@ -151,7 +151,7 @@ // If we're only interested in the subject line or envelope // information, just downloading the mail headers is alot // cheaper and alot faster. - IEnumerable messages = Client.GetMessages(uids. FetchOptions.HeadersOnly); + IEnumerable messages = Client.GetMessages(uids, FetchOptions.HeadersOnly); } } } @@ -285,4 +285,4 @@ return message; } } - } \ No newline at end of file + }