From 46e9a57443b58e11d27e229bf39cb3c65c9721dc Mon Sep 17 00:00:00 2001 From: Perry Taylor Date: Wed, 30 Oct 2013 21:39:35 -0400 Subject: [PATCH] I was concentrating on different white spaces. And it was right in front of me:) --- Octokit.Reactive/ObservableGitHubClient.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Octokit.Reactive/ObservableGitHubClient.cs b/Octokit.Reactive/ObservableGitHubClient.cs index 464d15c2..ba15a9b7 100644 --- a/Octokit.Reactive/ObservableGitHubClient.cs +++ b/Octokit.Reactive/ObservableGitHubClient.cs @@ -14,17 +14,17 @@ namespace Octokit.Reactive } public ObservableGitHubClient(ProductHeaderValue productInformation, ICredentialStore credentialStore) - :this(new GitHubClient(productInformation, credentialStore)) + : this(new GitHubClient(productInformation, credentialStore)) { } public ObservableGitHubClient(ProductHeaderValue productInformation, Uri baseAddress) - :this(new GitHubClient(productInformation, baseAddress)) - { + : this(new GitHubClient(productInformation, baseAddress)) + { } public ObservableGitHubClient(ProductHeaderValue productInformation, ICredentialStore credentialStore, Uri baseAddress) - :this(new GitHubClient(productInformation, credentialStore, baseAddress)) + : this(new GitHubClient(productInformation, credentialStore, baseAddress)) { }