Skip to content

Commit

Permalink
Fix convention test for variable name on Observable implementation
Browse files Browse the repository at this point in the history
Fix missing parameter in XML comment
  • Loading branch information
ryangribble committed Jan 31, 2016
1 parent c90a77a commit ad64061
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ public interface IObservableEnterpriseOrganizationClient
/// <remarks>
/// https://developer.github.com/v3/enterprise/orgs/#create-an-organization
/// </remarks>
/// <param name="newOrganization">A <see cref="NewOrganization"/> instance describing the organization to be created</param>
/// <returns>The <see cref="Organization"/> created.</returns>
IObservable<Organization> Create(NewOrganization request);
IObservable<Organization> Create(NewOrganization newOrganization);
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ public ObservableEnterpriseOrganizationClient(IGitHubClient client)
/// <remarks>
/// https://developer.github.com/v3/enterprise/orgs/#create-an-organization
/// </remarks>
/// <param name="newOrganization">A <see cref="NewOrganization"/> instance describing the organization to be created</param>
/// <returns>The <see cref="Organization"/> created.</returns>
public IObservable<Organization> Create(NewOrganization request)
public IObservable<Organization> Create(NewOrganization newOrganization)
{
return _client.Create(request).ToObservable();
return _client.Create(newOrganization).ToObservable();
}
}
}

0 comments on commit ad64061

Please sign in to comment.