From 64bd9d4b9b8cba6c9fa0c554bf72cce9250659d2 Mon Sep 17 00:00:00 2001 From: Peter MacNaughton Date: Wed, 26 Feb 2014 22:08:46 -0700 Subject: [PATCH] Updating some interface documentation where the implementation documentation seemed better. --- .../Clients/IObservableIssueCommentsClient.cs | 14 +++++++------- .../Clients/IObservableMilestonesClient.cs | 4 ++-- .../Clients/IObservableStarredClient.cs | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs b/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs index 401391db..c6c6a67d 100644 --- a/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssueCommentsClient.cs @@ -12,8 +12,8 @@ namespace Octokit.Reactive /// http://developer.github.com/v3/issues/comments/#get-a-single-comment /// The owner of the repository /// The name of the repository - /// The issue number - /// + /// The issue comment number + /// The s for the specified Issue Comment. [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(string owner, string name, int number); @@ -24,7 +24,7 @@ namespace Octokit.Reactive /// http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository /// The owner of the repository /// The name of the repository - /// + /// The list of s for the specified Repository. IObservable GetForRepository(string owner, string name); /// @@ -34,7 +34,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The issue number - /// + /// The list of s for the specified Issue. IObservable GetForIssue(string owner, string name, int number); /// @@ -44,8 +44,8 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The number of the issue - /// The new comment to add to the issue - /// + /// The text of the new comment + /// The that was just created. IObservable Create(string owner, string name, int number, string newComment); /// @@ -56,7 +56,7 @@ namespace Octokit.Reactive /// The name of the repository /// The comment number /// The modified comment - /// + /// The that was just updated. IObservable Update(string owner, string name, int number, string commentUpdate); /// diff --git a/Octokit.Reactive/Clients/IObservableMilestonesClient.cs b/Octokit.Reactive/Clients/IObservableMilestonesClient.cs index f1ad38e3..c21ef819 100644 --- a/Octokit.Reactive/Clients/IObservableMilestonesClient.cs +++ b/Octokit.Reactive/Clients/IObservableMilestonesClient.cs @@ -41,7 +41,7 @@ namespace Octokit.Reactive IObservable GetForRepository(string owner, string name, MilestoneRequest request); /// - /// Creates a milestone for the specified repository. Any user with pull access to a repository can create an + /// Creates a milestone for the specified repository. Any user with pull access to a repository can create a /// Milestone. /// /// http://developer.github.com/v3/issues/milestones/#create-a-milestone @@ -52,7 +52,7 @@ namespace Octokit.Reactive IObservable Create(string owner, string name, NewMilestone newMilestone); /// - /// Creates a milestone for the specified repository. Any user with pull access to a repository can create an + /// Updates a milestone for the specified repository. Any user with pull access to a repository can create a /// Milestone. /// /// http://developer.github.com/v3/issues/milestones/#update-a-milestone diff --git a/Octokit.Reactive/Clients/IObservableStarredClient.cs b/Octokit.Reactive/Clients/IObservableStarredClient.cs index 382260c9..63dd4e35 100644 --- a/Octokit.Reactive/Clients/IObservableStarredClient.cs +++ b/Octokit.Reactive/Clients/IObservableStarredClient.cs @@ -10,7 +10,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// Thrown if the client is not authenticated - /// A of starring the passed repository + /// A of s starring the passed repository IObservable GetAllStargazers(string owner, string name); ///