Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Octokit.Reactive/Clients/IObservableActionsWorkflowsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public interface IObservableActionsWorkflowsClient
IObservable<Workflow> Get(string owner, string name, long workflowId);

/// <summary>
/// Gets useage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// Gets usage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflows/#get-workflow-usage
Expand All @@ -134,7 +134,7 @@ public interface IObservableActionsWorkflowsClient
IObservable<WorkflowUsage> GetUsage(string owner, string name, string workflowFileName);

/// <summary>
/// Gets useage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// Gets usage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflows/#get-workflow-usage
Expand Down
4 changes: 2 additions & 2 deletions Octokit.Reactive/Clients/ObservableActionsWorkflowsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public IObservable<Workflow> Get(string owner, string name, long workflowId)
}

/// <summary>
/// Gets useage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// Gets usage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflows/#get-workflow-usage
Expand All @@ -218,7 +218,7 @@ public IObservable<WorkflowUsage> GetUsage(string owner, string name, string wor
}

/// <summary>
/// Gets useage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// Gets usage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflows/#get-workflow-usage
Expand Down
4 changes: 2 additions & 2 deletions Octokit/Clients/ActionsWorkflowsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public Task<Workflow> Get(string owner, string name, long workflowId)
}

/// <summary>
/// Gets useage of a specific workflow in a repository by file name. Anyone with read access to the repository can use this endpoint.
/// Gets usage of a specific workflow in a repository by file name. Anyone with read access to the repository can use this endpoint.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflows/#get-workflow-usage
Expand All @@ -228,7 +228,7 @@ public Task<WorkflowUsage> GetUsage(string owner, string name, string workflowFi
}

/// <summary>
/// Gets useage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// Gets usage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflows/#get-workflow-usage
Expand Down
4 changes: 2 additions & 2 deletions Octokit/Clients/IActionsWorkflowsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public interface IActionsWorkflowsClient
Task<Workflow> Get(string owner, string name, long workflowId);

/// <summary>
/// Gets useage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// Gets usage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflows/#get-workflow-usage
Expand All @@ -134,7 +134,7 @@ public interface IActionsWorkflowsClient
Task<WorkflowUsage> GetUsage(string owner, string name, string workflowFileName);

/// <summary>
/// Gets useage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// Gets usage of a specific workflow in a repository by Id. Anyone with read access to the repository can use this endpoint.
/// </summary>
/// <remarks>
/// https://developer.github.com/v3/actions/workflows/#get-workflow-usage
Expand Down
Loading