Fix typos in comments (#2040)

This commit is contained in:
Jose de Jesus Medina
2019-10-30 09:51:20 -07:00
committed by Brendan Forster
parent 8b263cdc0f
commit 5eb9f06b24
34 changed files with 70 additions and 70 deletions

View File

@@ -101,7 +101,7 @@ namespace Octokit.Reactive
/// <remarks>
/// See the <a href="https://developer.github.com/v3/projects/#list-organization-projects">API documentation</a> for more information.
/// </remarks>
/// <param name="organization">The name of the organziation</param>
/// <param name="organization">The name of the organization</param>
IObservable<Project> GetAllForOrganization(string organization);
/// <summary>
@@ -110,7 +110,7 @@ namespace Octokit.Reactive
/// <remarks>
/// See the <a href="https://developer.github.com/v3/projects/#list-organization-projects">API documentation</a> for more information.
/// </remarks>
/// <param name="organization">The name of the organziation</param>
/// <param name="organization">The name of the organization</param>
/// <param name="request">Used to filter the list of projects returned</param>
IObservable<Project> GetAllForOrganization(string organization, ProjectRequest request);
@@ -120,7 +120,7 @@ namespace Octokit.Reactive
/// <remarks>
/// See the <a href="https://developer.github.com/v3/projects/#list-organization-projects">API documentation</a> for more information.
/// </remarks>
/// <param name="organization">The name of the organziation</param>
/// <param name="organization">The name of the organization</param>
/// <param name="options">Options for changing the API response</param>
IObservable<Project> GetAllForOrganization(string organization, ApiOptions options);
@@ -130,7 +130,7 @@ namespace Octokit.Reactive
/// <remarks>
/// See the <a href="https://developer.github.com/v3/projects/#list-organization-projects">API documentation</a> for more information.
/// </remarks>
/// <param name="organization">The name of the organziation</param>
/// <param name="organization">The name of the organization</param>
/// <param name="request">Used to filter the list of projects returned</param>
/// <param name="options">Options for changing the API response</param>
IObservable<Project> GetAllForOrganization(string organization, ProjectRequest request, ApiOptions options);