From 7bc44d4119e0a083b799a5ba7b4ccfa1ce56812a Mon Sep 17 00:00:00 2001 From: Ryan Gribble Date: Wed, 10 Aug 2016 15:58:57 +1000 Subject: [PATCH] Tidy up a few Xml comments --- .../Clients/IObservableRepositoryBranchesClient.cs | 1 + Octokit.Reactive/Clients/ObservableRepositoryBranchesClient.cs | 1 + Octokit/Clients/IRepositoryBranchesClient.cs | 1 + Octokit/Clients/RepositoryBranchesClient.cs | 1 + Octokit/Helpers/ApiUrls.cs | 3 +-- 5 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableRepositoryBranchesClient.cs b/Octokit.Reactive/Clients/IObservableRepositoryBranchesClient.cs index 8b960ec3..dbf2452d 100644 --- a/Octokit.Reactive/Clients/IObservableRepositoryBranchesClient.cs +++ b/Octokit.Reactive/Clients/IObservableRepositoryBranchesClient.cs @@ -133,6 +133,7 @@ namespace Octokit.Reactive /// See the API documentation for more details /// /// The Id of the repository + /// The name of the branch /// Branch protection settings IObservable UpdateBranchProtection(int repositoryId, string branch, BranchProtectionSettingsUpdate update); diff --git a/Octokit.Reactive/Clients/ObservableRepositoryBranchesClient.cs b/Octokit.Reactive/Clients/ObservableRepositoryBranchesClient.cs index 7aec5e28..eb200bdb 100644 --- a/Octokit.Reactive/Clients/ObservableRepositoryBranchesClient.cs +++ b/Octokit.Reactive/Clients/ObservableRepositoryBranchesClient.cs @@ -208,6 +208,7 @@ namespace Octokit.Reactive /// See the API documentation for more details /// /// The Id of the repository + /// The name of the branch /// Branch protection settings public IObservable UpdateBranchProtection(int repositoryId, string branch, BranchProtectionSettingsUpdate update) { diff --git a/Octokit/Clients/IRepositoryBranchesClient.cs b/Octokit/Clients/IRepositoryBranchesClient.cs index 5ec0111d..1e4fff9e 100644 --- a/Octokit/Clients/IRepositoryBranchesClient.cs +++ b/Octokit/Clients/IRepositoryBranchesClient.cs @@ -138,6 +138,7 @@ namespace Octokit /// See the API documentation for more details /// /// The Id of the repository + /// The name of the branch /// Branch protection settings Task UpdateBranchProtection(int repositoryId, string branch, BranchProtectionSettingsUpdate update); diff --git a/Octokit/Clients/RepositoryBranchesClient.cs b/Octokit/Clients/RepositoryBranchesClient.cs index a84cd397..799273b8 100644 --- a/Octokit/Clients/RepositoryBranchesClient.cs +++ b/Octokit/Clients/RepositoryBranchesClient.cs @@ -210,6 +210,7 @@ namespace Octokit /// See the API documentation for more details /// /// The Id of the repository + /// The name of the branch /// Branch protection settings public Task UpdateBranchProtection(int repositoryId, string branch, BranchProtectionSettingsUpdate update) { diff --git a/Octokit/Helpers/ApiUrls.cs b/Octokit/Helpers/ApiUrls.cs index 817f4204..aa8a98fa 100644 --- a/Octokit/Helpers/ApiUrls.cs +++ b/Octokit/Helpers/ApiUrls.cs @@ -1639,8 +1639,7 @@ namespace Octokit /// /// Returns the for a repository branches protection. /// - /// The owner of the repository - /// The name of the repository + /// The Id of the repository /// The name of the branch /// public static Uri RepoBranchProtection(int repositoryId, string branchName)