fixed convention tests

This commit is contained in:
aedampir@gmail.com
2016-06-18 00:46:33 +07:00
parent 71044722e4
commit 5bf15392fa
2 changed files with 12 additions and 12 deletions
@@ -526,19 +526,19 @@ namespace Octokit.Reactive
/// </summary>
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <param name="branchName">The name of the branch</param>
/// <param name="branch">The name of the branch</param>
/// <param name="update">New values to update the branch with</param>
/// <returns>The updated <see cref="T:Octokit.Branch"/></returns>
IObservable<Branch> EditBranch(string owner, string name, string branchName, BranchUpdate update);
IObservable<Branch> EditBranch(string owner, string name, string branch, BranchUpdate update);
/// <summary>
/// Edit the specified branch with the values given in <paramref name="update"/>
/// </summary>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="branchName">The name of the branch</param>
/// <param name="branch">The name of the branch</param>
/// <param name="update">New values to update the branch with</param>
/// <returns>The updated <see cref="T:Octokit.Branch"/></returns>
IObservable<Branch> EditBranch(int repositoryId, string branchName, BranchUpdate update);
IObservable<Branch> EditBranch(int repositoryId, string branch, BranchUpdate update);
/// <summary>
/// A client for GitHub's Repo Collaborators.