mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-22 15:15:19 +00:00
ID -> Id
This commit is contained in:
@@ -28,7 +28,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>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||
IObservable<TreeResponse> Get(int repositoryId, string reference);
|
||||
@@ -50,7 +50,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>
|
||||
IObservable<TreeResponse> GetRecursive(int repositoryId, string reference);
|
||||
|
||||
@@ -71,7 +71,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>
|
||||
IObservable<TreeResponse> Create(int repositoryId, NewTree newTree);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user