diff --git a/PocketSharp/Components/Explore.cs b/PocketSharp/Components/Explore.cs index 3c18f0b..350197b 100644 --- a/PocketSharp/Components/Explore.cs +++ b/PocketSharp/Components/Explore.cs @@ -17,12 +17,12 @@ namespace PocketSharp /// /// Term to use for trending articles in the Explore() method /// - public const string EXPLORE_TRENDING = "trending"; + const string EXPLORE_TRENDING = "trending"; /// /// Term to use for must-read articles in the Explore() method /// - public const string EXPLORE_MUST_READS = "must-reads"; + const string EXPLORE_MUST_READS = "must-reads"; /// @@ -31,7 +31,7 @@ namespace PocketSharp /// Term or topic to get articles for /// /// - public async Task> Explore(string topic, CancellationToken cancellationToken = default(CancellationToken)) + async Task> Explore(string topic, CancellationToken cancellationToken = default(CancellationToken)) { List items = new List(); string html = await RequestAsString("https://getpocket.com/explore/" + HttpUtility.UrlEncode(topic) , cancellationToken); diff --git a/PocketSharp/IPocketClient.cs b/PocketSharp/IPocketClient.cs index 8850b7c..55526e6 100644 --- a/PocketSharp/IPocketClient.cs +++ b/PocketSharp/IPocketClient.cs @@ -501,7 +501,7 @@ namespace PocketSharp /// Term or topic to get articles for /// /// - Task> Explore(string topic, CancellationToken cancellationToken = default(CancellationToken)); + // Task> Explore(string topic, CancellationToken cancellationToken = default(CancellationToken)); #endregion ///