Fix small compilation error

This commit is contained in:
Andre Rodrigues
2014-08-07 17:44:03 +01:00
parent df668abcc1
commit 25aa5090f0
2 changed files with 2 additions and 2 deletions
@@ -48,7 +48,7 @@ namespace Octokit.Reactive
/// <param name="org">The login for the organization</param>
/// <param name="filter">The filter expression to use</param>
/// <returns></returns>
public IObservable<User> GetAll(string org, string filter);
IObservable<User> GetAll(string org, string filter);
/// <summary>
/// List all users who have publicized their membership of the organization.
@@ -77,6 +77,6 @@ namespace Octokit.Reactive
/// </summary>
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
/// <returns>The team's repositories</returns>
public IObservable<Repository> GetRepositories(int id);
IObservable<Repository> GetRepositories(int id);
}
}