Added the missing obsolete GetAll(string,string) method to IObservableOrganizationMembersClient, fixed 2 small typos in the comments

This commit is contained in:
Georgi Baychev
2014-12-18 14:36:14 +02:00
parent 90ae5d11d0
commit 9e4c8404c7
4 changed files with 26 additions and 2 deletions
@@ -50,6 +50,15 @@ namespace Octokit.Reactive
/// <returns></returns>
IObservable<User> GetAll(string org, OrganizationMembersFilter filter);
/// <summary>
/// Obsolete, <see cref="GetAll(string,OrganizationMembersFilter)"/>
/// </summary>
/// <param name="org">The login for the organization</param>
/// <param name="filter">The user filter</param>
/// <returns>The users</returns>
[Obsolete("No longer supported, use GetAll(string, OrganizationMembersFilter) instead")]
IObservable<User> GetAll(string org, string filter);
/// <summary>
/// List all users who have publicized their membership of the organization.
/// </summary>