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

@@ -175,7 +175,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>
public IObservable<Project> GetAllForOrganization(string organization, ApiOptions options)
{
@@ -193,7 +193,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>
public IObservable<Project> GetAllForOrganization(string organization, ProjectRequest request)
{
@@ -206,7 +206,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>
public IObservable<Project> GetAllForOrganization(string organization, ProjectRequest request, ApiOptions options)