Quick pass of stargazer docs

This commit is contained in:
James R Sconfitto
2013-11-06 21:42:07 -05:00
parent 52d4a8b5f4
commit e63c19c82f
+2 -2
View File
@@ -11,10 +11,10 @@ namespace Octokit
}
/// <summary>
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user.
/// Retrieves all of the stargazers for the passed repository.
/// </summary>
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
/// <returns>A <see cref="IReadOnlyPagedCollection{Repository}"/> of <see cref="Repository"/>.</returns>
/// <returns>A <see cref="IReadOnlyPagedCollection{User}"/> of <see cref="User"/>.</returns>
public Task<IReadOnlyList<User>> GetAllStargazers(string owner, string repo)
{
return ApiConnection.GetAll<User>(ApiUrls.Stargazers(owner, repo));