From f7972957d93b1871cb37e310f83f3887fd3b8137 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 12 Jul 2014 08:00:45 +0930 Subject: [PATCH] the doc plagiarizer is trying to overwrite good docs with bad ones --- Octokit.Reactive/Clients/IObservableFollowersClient.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableFollowersClient.cs b/Octokit.Reactive/Clients/IObservableFollowersClient.cs index f959b833..bae85c30 100644 --- a/Octokit.Reactive/Clients/IObservableFollowersClient.cs +++ b/Octokit.Reactive/Clients/IObservableFollowersClient.cs @@ -16,7 +16,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// A of s that follow the authenticated user. + /// A of s that follow the authenticated user. [SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")] IObservable GetAllForCurrent(); @@ -27,7 +27,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// A of s that follow the passed user. + /// A of s that follow the passed user. IObservable GetAll(string login); /// @@ -36,7 +36,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// A of s that the authenticated user follows. + /// A of s that the authenticated user follows. [SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")] IObservable GetFollowingForCurrent(); @@ -47,7 +47,7 @@ namespace Octokit.Reactive /// /// See the API documentation for more information. /// - /// A of s that the passed user follows. + /// A of s that the passed user follows. IObservable GetFollowing(string login); ///