From ec8e7d9325f828e74de342ceb1f72f1a6df188e6 Mon Sep 17 00:00:00 2001 From: Lee Greenwood Date: Fri, 3 Jan 2014 17:07:37 +0000 Subject: [PATCH] Updated Readme.md with corrected example code The .Read method cannot be called with a string, only a Uri, so the example code was changed to reflect this. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ccb26d..1055acd 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Article article; try { - article = await reader.Read("http://frontendplay.com/story/4/http-caching-demystified-part-2-implementation"); + article = await reader.Read(new Uri("http://frontendplay.com/story/4/http-caching-demystified-part-2-implementation")); } catch (Exception exc) {