renamed method on IObservableWatchedClient

This commit is contained in:
Brendan Forster
2014-02-07 09:41:53 +11:00
parent b711dcc5e7
commit 724f7a6455
2 changed files with 2 additions and 2 deletions
@@ -37,7 +37,7 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
/// <returns>A <c>bool</c> representing the success of the operation</returns>
IObservable<bool> CheckStarred(string owner, string name);
IObservable<bool> CheckWatched(string owner, string name);
/// <summary>
/// Stars a repository for the authenticated user.
@@ -63,7 +63,7 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
/// <returns>A <c>bool</c> representing the success of the operation</returns>
public IObservable<bool> CheckStarred(string owner, string name)
public IObservable<bool> CheckWatched(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");