This commit is contained in:
aedampir@gmail.com
2016-07-17 16:29:32 +07:00
parent b47b05489e
commit 44b0f4039d
167 changed files with 999 additions and 999 deletions

View File

@@ -44,7 +44,7 @@ namespace Octokit.Reactive
/// <remarks>
/// http://developer.github.com/v3/git/trees/#get-a-tree
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
public IObservable<TreeResponse> Get(int repositoryId, string reference)
{
@@ -77,7 +77,7 @@ namespace Octokit.Reactive
/// <remarks>
/// https://developer.github.com/v3/git/trees/#get-a-tree-recursively
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="reference">The SHA that references the tree</param>
public IObservable<TreeResponse> GetRecursive(int repositoryId, string reference)
{
@@ -110,7 +110,7 @@ namespace Octokit.Reactive
/// <remarks>
/// http://developer.github.com/v3/git/trees/#create-a-tree
/// </remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="newTree">The value of the new tree</param>
public IObservable<TreeResponse> Create(int repositoryId, NewTree newTree)
{