diff --git a/Octokit.Reactive/Clients/IObservableWatchedClient.cs b/Octokit.Reactive/Clients/IObservableWatchedClient.cs index 7a2c9684..f64e8ea0 100644 --- a/Octokit.Reactive/Clients/IObservableWatchedClient.cs +++ b/Octokit.Reactive/Clients/IObservableWatchedClient.cs @@ -37,7 +37,7 @@ namespace Octokit.Reactive /// The name of the repository /// Thrown if the client is not authenticated /// A bool representing the success of the operation - IObservable CheckStarred(string owner, string name); + IObservable CheckWatched(string owner, string name); /// /// Stars a repository for the authenticated user. diff --git a/Octokit.Reactive/Clients/ObservableWatchedClient.cs b/Octokit.Reactive/Clients/ObservableWatchedClient.cs index 5a97c83d..aecaf981 100644 --- a/Octokit.Reactive/Clients/ObservableWatchedClient.cs +++ b/Octokit.Reactive/Clients/ObservableWatchedClient.cs @@ -63,7 +63,7 @@ namespace Octokit.Reactive /// The name of the repository /// Thrown if the client is not authenticated /// A bool representing the success of the operation - public IObservable CheckStarred(string owner, string name) + public IObservable CheckWatched(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(name, "name");