From a7203f449d8c8f07f005d90281ea493902cc7c39 Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Sat, 16 Mar 2019 09:16:14 +1000 Subject: [PATCH 1/5] Add a warning to the statistics client about caching --- Octokit.Reactive/Clients/IObservableRepositoriesClient.cs | 8 ++++++++ Octokit.Reactive/Clients/IObservableStatisticsClient.cs | 8 ++++++++ Octokit.Reactive/Clients/ObservableRepositoriesClient.cs | 8 ++++++++ Octokit.Reactive/Clients/ObservableStatisticsClient.cs | 8 ++++++++ Octokit/Clients/IRepositoriesClient.cs | 8 ++++++++ Octokit/Clients/IStatisticsClient.cs | 8 ++++++++ Octokit/Clients/RepositoriesClient.cs | 8 ++++++++ Octokit/Clients/StatisticsClient.cs | 8 ++++++++ 8 files changed, 64 insertions(+) diff --git a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs index 2843a46cb4..65e1a95d7c 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs @@ -206,6 +206,14 @@ public interface IObservableRepositoriesClient /// /// See the Statistics API documentation for more details /// + /// + /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. + /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. + /// Give the job a few moments to complete, and then submit the request again. + /// If the job has completed, that request will receive a 200 response with the statistics in the response body. + /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. + /// See a word about caching for more information. + /// IObservableStatisticsClient Statistics { get; } /// diff --git a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs index 16460365b9..6acd6f5343 100644 --- a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs +++ b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs @@ -9,6 +9,14 @@ namespace Octokit.Reactive /// /// See the Repository Statistics API documentation for more information. /// + /// + /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. + /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. + /// Give the job a few moments to complete, and then submit the request again. + /// If the job has completed, that request will receive a 200 response with the statistics in the response body. + /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. + /// See a word about caching for more information. + /// public interface IObservableStatisticsClient { /// diff --git a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs index e6f07b9daa..8125c1f74d 100644 --- a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs +++ b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs @@ -319,6 +319,14 @@ public IObservable GetAllForOrg(string organization, ApiOptions opti /// /// See the Statistics API documentation for more details /// + /// + /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. + /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. + /// Give the job a few moments to complete, and then submit the request again. + /// If the job has completed, that request will receive a 200 response with the statistics in the response body. + /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. + /// See a word about caching for more information. + /// public IObservableStatisticsClient Statistics { get; private set; } /// diff --git a/Octokit.Reactive/Clients/ObservableStatisticsClient.cs b/Octokit.Reactive/Clients/ObservableStatisticsClient.cs index e1f3b3bf88..ba2f94c3d7 100644 --- a/Octokit.Reactive/Clients/ObservableStatisticsClient.cs +++ b/Octokit.Reactive/Clients/ObservableStatisticsClient.cs @@ -10,6 +10,14 @@ namespace Octokit.Reactive /// /// See the Repository Statistics API documentation for more information. /// + /// + /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. + /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. + /// Give the job a few moments to complete, and then submit the request again. + /// If the job has completed, that request will receive a 200 response with the statistics in the response body. + /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. + /// See a word about caching for more information. + /// public class ObservableStatisticsClient : IObservableStatisticsClient { readonly IGitHubClient _client; diff --git a/Octokit/Clients/IRepositoriesClient.cs b/Octokit/Clients/IRepositoriesClient.cs index 617b93c2fb..2771a69a8d 100644 --- a/Octokit/Clients/IRepositoriesClient.cs +++ b/Octokit/Clients/IRepositoriesClient.cs @@ -321,6 +321,14 @@ public interface IRepositoriesClient /// /// See the Statistics API documentation for more details /// + /// + /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. + /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. + /// Give the job a few moments to complete, and then submit the request again. + /// If the job has completed, that request will receive a 200 response with the statistics in the response body. + /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. + /// See a word about caching for more information. + /// IStatisticsClient Statistics { get; } /// diff --git a/Octokit/Clients/IStatisticsClient.cs b/Octokit/Clients/IStatisticsClient.cs index 9802ef752f..ab41ca7aa6 100644 --- a/Octokit/Clients/IStatisticsClient.cs +++ b/Octokit/Clients/IStatisticsClient.cs @@ -10,6 +10,14 @@ namespace Octokit /// /// See the Repository Statistics API documentation for more information. /// + /// + /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. + /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. + /// Give the job a few moments to complete, and then submit the request again. + /// If the job has completed, that request will receive a 200 response with the statistics in the response body. + /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. + /// See a word about caching for more information. + /// public interface IStatisticsClient { /// diff --git a/Octokit/Clients/RepositoriesClient.cs b/Octokit/Clients/RepositoriesClient.cs index b31065710e..dc3d91746d 100644 --- a/Octokit/Clients/RepositoriesClient.cs +++ b/Octokit/Clients/RepositoriesClient.cs @@ -475,6 +475,14 @@ public Task> GetAllForOrg(string organization, ApiOpti /// /// See the Statistics API documentation for more details /// + /// + /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. + /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. + /// Give the job a few moments to complete, and then submit the request again. + /// If the job has completed, that request will receive a 200 response with the statistics in the response body. + /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. + /// See a word about caching for more information. + /// public IStatisticsClient Statistics { get; private set; } /// diff --git a/Octokit/Clients/StatisticsClient.cs b/Octokit/Clients/StatisticsClient.cs index 99a190778e..5d1a8355fd 100644 --- a/Octokit/Clients/StatisticsClient.cs +++ b/Octokit/Clients/StatisticsClient.cs @@ -11,6 +11,14 @@ namespace Octokit /// /// See the Repository Statistics API documentation for more information. /// + /// + /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. + /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. + /// Give the job a few moments to complete, and then submit the request again. + /// If the job has completed, that request will receive a 200 response with the statistics in the response body. + /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. + /// See a word about caching for more information. + /// public class StatisticsClient : ApiClient, IStatisticsClient { /// From b1164296978ed27f0420ee8f6222e842ed72eb8b Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Thu, 21 Mar 2019 21:48:17 +1000 Subject: [PATCH 2/5] Simplify note about caching and direct users to the API docs Also update to use summary instead of remarks --- .../Clients/IObservableRepositoriesClient.cs | 12 ++++-------- .../Clients/IObservableStatisticsClient.cs | 12 ++++-------- .../Clients/ObservableRepositoriesClient.cs | 12 ++++-------- .../Clients/ObservableStatisticsClient.cs | 12 ++++-------- Octokit/Clients/IRepositoriesClient.cs | 12 ++++-------- Octokit/Clients/IStatisticsClient.cs | 12 ++++-------- Octokit/Clients/RepositoriesClient.cs | 12 ++++-------- Octokit/Clients/StatisticsClient.cs | 12 ++++-------- 8 files changed, 32 insertions(+), 64 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs index 65e1a95d7c..64d48799e5 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs @@ -203,17 +203,13 @@ public interface IObservableRepositoriesClient /// /// Client for GitHub's Repository Statistics API /// + /// + /// Note that the GitHub API uses caching on these endpoints, + /// see a word about caching for more details. + /// /// /// See the Statistics API documentation for more details /// - /// - /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. - /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. - /// Give the job a few moments to complete, and then submit the request again. - /// If the job has completed, that request will receive a 200 response with the statistics in the response body. - /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. - /// See a word about caching for more information. - /// IObservableStatisticsClient Statistics { get; } /// diff --git a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs index 6acd6f5343..ef45337b25 100644 --- a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs +++ b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs @@ -6,17 +6,13 @@ namespace Octokit.Reactive /// /// A client for GitHub's Repository Statistics API. /// + /// + /// Note that the GitHub API uses caching on these endpoints, + /// see a word about caching for more details. + /// /// /// See the Repository Statistics API documentation for more information. /// - /// - /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. - /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. - /// Give the job a few moments to complete, and then submit the request again. - /// If the job has completed, that request will receive a 200 response with the statistics in the response body. - /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. - /// See a word about caching for more information. - /// public interface IObservableStatisticsClient { /// diff --git a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs index 8125c1f74d..57140b8b37 100644 --- a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs +++ b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs @@ -316,17 +316,13 @@ public IObservable GetAllForOrg(string organization, ApiOptions opti /// /// Client for GitHub's Repository Statistics API /// + /// + /// Note that the GitHub API uses caching on these endpoints, + /// see a word about caching for more details. + /// /// /// See the Statistics API documentation for more details /// - /// - /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. - /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. - /// Give the job a few moments to complete, and then submit the request again. - /// If the job has completed, that request will receive a 200 response with the statistics in the response body. - /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. - /// See a word about caching for more information. - /// public IObservableStatisticsClient Statistics { get; private set; } /// diff --git a/Octokit.Reactive/Clients/ObservableStatisticsClient.cs b/Octokit.Reactive/Clients/ObservableStatisticsClient.cs index ba2f94c3d7..692b4e8d0a 100644 --- a/Octokit.Reactive/Clients/ObservableStatisticsClient.cs +++ b/Octokit.Reactive/Clients/ObservableStatisticsClient.cs @@ -7,17 +7,13 @@ namespace Octokit.Reactive /// /// A client for GitHub's Repository Statistics API. /// + /// + /// Note that the GitHub API uses caching on these endpoints, + /// see a word about caching for more details. + /// /// /// See the Repository Statistics API documentation for more information. /// - /// - /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. - /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. - /// Give the job a few moments to complete, and then submit the request again. - /// If the job has completed, that request will receive a 200 response with the statistics in the response body. - /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. - /// See a word about caching for more information. - /// public class ObservableStatisticsClient : IObservableStatisticsClient { readonly IGitHubClient _client; diff --git a/Octokit/Clients/IRepositoriesClient.cs b/Octokit/Clients/IRepositoriesClient.cs index 2771a69a8d..377f2b4875 100644 --- a/Octokit/Clients/IRepositoriesClient.cs +++ b/Octokit/Clients/IRepositoriesClient.cs @@ -318,17 +318,13 @@ public interface IRepositoriesClient /// /// Client for GitHub's Repository Statistics API /// + /// + /// Note that the GitHub API uses caching on these endpoints, + /// see a word about caching for more details. + /// /// /// See the Statistics API documentation for more details /// - /// - /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. - /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. - /// Give the job a few moments to complete, and then submit the request again. - /// If the job has completed, that request will receive a 200 response with the statistics in the response body. - /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. - /// See a word about caching for more information. - /// IStatisticsClient Statistics { get; } /// diff --git a/Octokit/Clients/IStatisticsClient.cs b/Octokit/Clients/IStatisticsClient.cs index ab41ca7aa6..577946e0c1 100644 --- a/Octokit/Clients/IStatisticsClient.cs +++ b/Octokit/Clients/IStatisticsClient.cs @@ -7,17 +7,13 @@ namespace Octokit /// /// A client for GitHub's Repository Statistics API. /// + /// + /// Note that the GitHub API uses caching on these endpoints, + /// see a word about caching for more details. + /// /// /// See the Repository Statistics API documentation for more information. /// - /// - /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. - /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. - /// Give the job a few moments to complete, and then submit the request again. - /// If the job has completed, that request will receive a 200 response with the statistics in the response body. - /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. - /// See a word about caching for more information. - /// public interface IStatisticsClient { /// diff --git a/Octokit/Clients/RepositoriesClient.cs b/Octokit/Clients/RepositoriesClient.cs index dc3d91746d..752abbc924 100644 --- a/Octokit/Clients/RepositoriesClient.cs +++ b/Octokit/Clients/RepositoriesClient.cs @@ -472,17 +472,13 @@ public Task> GetAllForOrg(string organization, ApiOpti /// /// Client for GitHub's Repository Statistics API /// + /// + /// Note that the GitHub API uses caching on these endpoints, + /// see a word about caching for more details. + /// /// /// See the Statistics API documentation for more details /// - /// - /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. - /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. - /// Give the job a few moments to complete, and then submit the request again. - /// If the job has completed, that request will receive a 200 response with the statistics in the response body. - /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. - /// See a word about caching for more information. - /// public IStatisticsClient Statistics { get; private set; } /// diff --git a/Octokit/Clients/StatisticsClient.cs b/Octokit/Clients/StatisticsClient.cs index 5d1a8355fd..210f3d7800 100644 --- a/Octokit/Clients/StatisticsClient.cs +++ b/Octokit/Clients/StatisticsClient.cs @@ -8,17 +8,13 @@ namespace Octokit /// /// A client for GitHub's Repository Statistics API. /// + /// + /// Note that the GitHub API uses caching on these endpoints, + /// see a word about caching for more details. + /// /// /// See the Repository Statistics API documentation for more information. /// - /// - /// Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. - /// If the data hasn't been cached when you query a repository's statistics, you'll receive a 202 response; a background job is also fired to start compiling these statistics. - /// Give the job a few moments to complete, and then submit the request again. - /// If the job has completed, that request will receive a 200 response with the statistics in the response body. - /// Repository statistics are cached by the SHA of the repository's default branch, which is usually master; pushing to the default branch resets the statistics cache. - /// See a word about caching for more information. - /// public class StatisticsClient : ApiClient, IStatisticsClient { /// From 08545648d06f3f7c30c198ae95f3ef834bcb39b5 Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Sat, 30 Mar 2019 14:58:15 +1000 Subject: [PATCH 3/5] Merge the summary sections as the 2nd section is ignored in VS --- Octokit.Reactive/Clients/IObservableRepositoriesClient.cs | 4 +--- Octokit.Reactive/Clients/IObservableStatisticsClient.cs | 2 -- Octokit/Clients/IRepositoriesClient.cs | 4 +--- Octokit/Clients/IStatisticsClient.cs | 2 -- 4 files changed, 2 insertions(+), 10 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs index 64d48799e5..7d3218e884 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs @@ -201,9 +201,7 @@ public interface IObservableRepositoriesClient IObservableDeploymentsClient Deployment { get; } /// - /// Client for GitHub's Repository Statistics API - /// - /// + /// Client for GitHub's Repository Statistics API. /// Note that the GitHub API uses caching on these endpoints, /// see a word about caching for more details. /// diff --git a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs index ef45337b25..324fc95170 100644 --- a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs +++ b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs @@ -5,8 +5,6 @@ namespace Octokit.Reactive { /// /// A client for GitHub's Repository Statistics API. - /// - /// /// Note that the GitHub API uses caching on these endpoints, /// see a word about caching for more details. /// diff --git a/Octokit/Clients/IRepositoriesClient.cs b/Octokit/Clients/IRepositoriesClient.cs index 377f2b4875..ab9e31fb94 100644 --- a/Octokit/Clients/IRepositoriesClient.cs +++ b/Octokit/Clients/IRepositoriesClient.cs @@ -316,9 +316,7 @@ public interface IRepositoriesClient IDeploymentsClient Deployment { get; } /// - /// Client for GitHub's Repository Statistics API - /// - /// + /// Client for GitHub's Repository Statistics API. /// Note that the GitHub API uses caching on these endpoints, /// see a word about caching for more details. /// diff --git a/Octokit/Clients/IStatisticsClient.cs b/Octokit/Clients/IStatisticsClient.cs index 577946e0c1..f7731c86d7 100644 --- a/Octokit/Clients/IStatisticsClient.cs +++ b/Octokit/Clients/IStatisticsClient.cs @@ -6,8 +6,6 @@ namespace Octokit { /// /// A client for GitHub's Repository Statistics API. - /// - /// /// Note that the GitHub API uses caching on these endpoints, /// see a word about caching for more details. /// From 9ca9149027442f29d13514ec1aa8d2a4c6170611 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 12 Sep 2019 20:24:31 -0300 Subject: [PATCH 4/5] squash duplicate summary tags together --- Octokit.Reactive/Clients/ObservableRepositoriesClient.cs | 2 -- Octokit/Clients/RepositoriesClient.cs | 2 -- 2 files changed, 4 deletions(-) diff --git a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs index 57140b8b37..1f399145d2 100644 --- a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs +++ b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs @@ -315,8 +315,6 @@ public IObservable GetAllForOrg(string organization, ApiOptions opti /// /// Client for GitHub's Repository Statistics API - /// - /// /// Note that the GitHub API uses caching on these endpoints, /// see a word about caching for more details. /// diff --git a/Octokit/Clients/RepositoriesClient.cs b/Octokit/Clients/RepositoriesClient.cs index 752abbc924..20574b12b6 100644 --- a/Octokit/Clients/RepositoriesClient.cs +++ b/Octokit/Clients/RepositoriesClient.cs @@ -471,8 +471,6 @@ public Task> GetAllForOrg(string organization, ApiOpti /// /// Client for GitHub's Repository Statistics API - /// - /// /// Note that the GitHub API uses caching on these endpoints, /// see a word about caching for more details. /// From 9b76f9b060470939f2961b14ef738e1f564e1c50 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 12 Sep 2019 20:27:31 -0300 Subject: [PATCH 5/5] Also squash these lines --- Octokit.Reactive/Clients/ObservableStatisticsClient.cs | 2 -- Octokit/Clients/StatisticsClient.cs | 2 -- 2 files changed, 4 deletions(-) diff --git a/Octokit.Reactive/Clients/ObservableStatisticsClient.cs b/Octokit.Reactive/Clients/ObservableStatisticsClient.cs index 692b4e8d0a..4f5f98b8c6 100644 --- a/Octokit.Reactive/Clients/ObservableStatisticsClient.cs +++ b/Octokit.Reactive/Clients/ObservableStatisticsClient.cs @@ -6,8 +6,6 @@ namespace Octokit.Reactive { /// /// A client for GitHub's Repository Statistics API. - /// - /// /// Note that the GitHub API uses caching on these endpoints, /// see a word about caching for more details. /// diff --git a/Octokit/Clients/StatisticsClient.cs b/Octokit/Clients/StatisticsClient.cs index 210f3d7800..057e890071 100644 --- a/Octokit/Clients/StatisticsClient.cs +++ b/Octokit/Clients/StatisticsClient.cs @@ -7,8 +7,6 @@ namespace Octokit { /// /// A client for GitHub's Repository Statistics API. - /// - /// /// Note that the GitHub API uses caching on these endpoints, /// see a word about caching for more details. ///