diff --git a/Octokit.Reactive/Clients/IObservablePullRequestsClient.cs b/Octokit.Reactive/Clients/IObservablePullRequestsClient.cs index 98af7a03..0e608964 100644 --- a/Octokit.Reactive/Clients/IObservablePullRequestsClient.cs +++ b/Octokit.Reactive/Clients/IObservablePullRequestsClient.cs @@ -1,10 +1,7 @@ using System; -using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; -using System.Reactive; -using System.Threading.Tasks; -namespace Octokit +namespace Octokit.Reactive { public interface IObservablePullRequestsClient { @@ -43,7 +40,7 @@ namespace Octokit IObservable GetForRepository(string owner, string name, PullRequestRequest request); /// - /// Creates a pull request for the specified repository. + /// Creates a pull request for the specified repository. /// /// http://developer.github.com/v3/pulls/#create-a-pull-request /// The owner of the repository @@ -53,7 +50,7 @@ namespace Octokit IObservable Create(string owner, string name, NewPullRequest newPullRequest); /// - /// Creates a pull request for the specified repository. + /// Update a pull request for the specified repository. /// /// http://developer.github.com/v3/pulls/#update-a-pull-request /// The owner of the repository @@ -65,7 +62,7 @@ namespace Octokit IObservable Update(string owner, string name, int number, PullRequestUpdate pullRequestUpdate); /// - /// Merges a pull request. + /// Merge a pull request. /// /// http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade /// The owner of the repository diff --git a/Octokit.Reactive/Clients/ObservablePullRequestsClient.cs b/Octokit.Reactive/Clients/ObservablePullRequestsClient.cs index 8eab46f2..6065825c 100644 --- a/Octokit.Reactive/Clients/ObservablePullRequestsClient.cs +++ b/Octokit.Reactive/Clients/ObservablePullRequestsClient.cs @@ -1,11 +1,8 @@ using System; -using System.Collections.Generic; -using System.Reactive; using System.Reactive.Threading.Tasks; -using System.Threading.Tasks; using Octokit.Reactive.Internal; -namespace Octokit.Reactive.Clients +namespace Octokit.Reactive { public class ObservablePullRequestsClient : IObservablePullRequestsClient { @@ -87,7 +84,7 @@ namespace Octokit.Reactive.Clients } /// - /// Creates a Pull Request for the specified repository. + /// Update a Pull Request for the specified repository. /// /// http://developer.github.com/v3/pulls/#update-a-pull-request /// The owner of the repository @@ -106,7 +103,7 @@ namespace Octokit.Reactive.Clients } /// - /// Merges a pull request. + /// Merge a pull request. /// /// http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade /// The owner of the repository diff --git a/Octokit.Tests/Reactive/ObservablePullRequestsClientTests.cs b/Octokit.Tests/Reactive/ObservablePullRequestsClientTests.cs index 2a932429..b2f4d03d 100644 --- a/Octokit.Tests/Reactive/ObservablePullRequestsClientTests.cs +++ b/Octokit.Tests/Reactive/ObservablePullRequestsClientTests.cs @@ -3,9 +3,8 @@ using System.Collections.Generic; using System.Reactive.Linq; using System.Threading.Tasks; using NSubstitute; -using Octokit; using Octokit.Internal; -using Octokit.Reactive.Clients; +using Octokit.Reactive; using Octokit.Tests.Helpers; using Xunit;