Rename UserFollowersClient to FollowersClient

This commit is contained in:
Henrik Andersson
2014-01-29 21:51:49 +10:00
parent e05cd9df2c
commit f368645da5
20 changed files with 67 additions and 55 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ namespace Octokit
/// <param name="apiConnection">An API connection</param>
public UsersClient(IApiConnection apiConnection) : base(apiConnection)
{
Followers = new UserFollowersClient(apiConnection);
Followers = new FollowersClient(apiConnection);
}
/// <summary>
@@ -76,6 +76,6 @@ namespace Octokit
/// <remarks>
/// See the <a href="http://developer.github.com/v3/users/followers/">Followers API documentation</a> for more information.
///</remarks>
public IUserFollowersClient Followers { get; private set; }
public IFollowersClient Followers { get; private set; }
}
}