From 724f7a645552c7ad349d9fbaf202d9dc0dd66e71 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 7 Feb 2014 09:41:53 +1100 Subject: [PATCH] renamed method on IObservableWatchedClient --- Octokit.Reactive/Clients/IObservableWatchedClient.cs | 2 +- Octokit.Reactive/Clients/ObservableWatchedClient.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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");