mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-22 23:25:24 +00:00
ID -> Id
This commit is contained in:
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
||||
/// a tag name.
|
||||
/// </summary>
|
||||
/// <remarks>Only users with pull access can see this.</remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||
public IObservable<CommitStatus> GetAll(int repositoryId, string reference)
|
||||
{
|
||||
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
|
||||
/// a tag name.
|
||||
/// </summary>
|
||||
/// <remarks>Only users with pull access can see this.</remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
public IObservable<CommitStatus> GetAll(int repositoryId, string reference, ApiOptions options)
|
||||
@@ -111,7 +111,7 @@ namespace Octokit.Reactive
|
||||
/// a tag name.
|
||||
/// </summary>
|
||||
/// <remarks>Only users with pull access can see this.</remarks>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||
public IObservable<CombinedCommitStatus> GetCombined(int repositoryId, string reference)
|
||||
{
|
||||
@@ -140,7 +140,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Creates a commit status for the specified ref.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||
/// <param name="newCommitStatus">The commit status to create</param>
|
||||
public IObservable<CommitStatus> Create(int repositoryId, string reference, NewCommitStatus newCommitStatus)
|
||||
|
||||
Reference in New Issue
Block a user