diff --git a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs
index 195e33af..0ad497f8 100644
--- a/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs
+++ b/Octokit.Reactive/Clients/IObservableRepositoriesClient.cs
@@ -145,7 +145,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// All contributors of the repository.
- IObservable GetAllContributors(string owner, string name);
+ IObservable GetAllContributors(string owner, string name);
///
/// Gets all contributors for the specified repository. With the option to include anonymous contributors.
@@ -157,7 +157,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// True if anonymous contributors should be included in result; Otherwise false
/// All contributors of the repository.
- IObservable GetAllContributors(string owner, string name, bool includeAnonymous);
+ IObservable GetAllContributors(string owner, string name, bool includeAnonymous);
///
/// Gets all languages for the specified repository.
diff --git a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs
index c62ef7cf..303856bb 100644
--- a/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs
+++ b/Octokit.Reactive/Clients/ObservableRepositoriesClient.cs
@@ -219,7 +219,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// All contributors of the repository.
- public IObservable GetAllContributors(string owner, string name)
+ public IObservable GetAllContributors(string owner, string name)
{
return GetAllContributors(owner, name, false);
}
@@ -234,7 +234,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// True if anonymous contributors should be included in result; Otherwise false
/// All contributors of the repository.
- public IObservable GetAllContributors(string owner, string name, bool includeAnonymous)
+ public IObservable GetAllContributors(string owner, string name, bool includeAnonymous)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
@@ -244,7 +244,7 @@ namespace Octokit.Reactive
if (includeAnonymous)
parameters.Add("anon", "1");
- return _connection.GetAndFlattenAllPages(endpoint, parameters);
+ return _connection.GetAndFlattenAllPages(endpoint, parameters);
}
///
diff --git a/Octokit.Tests/Reactive/ObservableRepositoriesClientTests.cs b/Octokit.Tests/Reactive/ObservableRepositoriesClientTests.cs
index 6104bb62..fd2ba49b 100644
--- a/Octokit.Tests/Reactive/ObservableRepositoriesClientTests.cs
+++ b/Octokit.Tests/Reactive/ObservableRepositoriesClientTests.cs
@@ -266,7 +266,7 @@ namespace Octokit.Tests.Reactive
client.GetAllContributors("owner", "repo");
github.Connection.Received(1)
- .Get>(expected,
+ .Get>(expected,
Arg.Any>(),
Arg.Any());
}