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.
This commit is contained in:
Lee Greenwood
2014-01-03 17:07:37 +00:00
parent 6987384e81
commit ec8e7d9325
+1 -1
View File
@@ -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)
{