From 0a71cb4abe56ba0576be23de5d59ef6dbab516df Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Tue, 29 Mar 2016 17:36:34 +0700 Subject: [PATCH] Connection.cs fixes --- Octokit/Http/Connection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit/Http/Connection.cs b/Octokit/Http/Connection.cs index 81a1f86b..084f550d 100644 --- a/Octokit/Http/Connection.cs +++ b/Octokit/Http/Connection.cs @@ -142,7 +142,7 @@ namespace Octokit /// representing the information returned as part of an Api call public ApiInfo GetLastApiInfo() { - // We've choosen to not wrap the _lastApiInfo in a lock. Originally the code was returning a reference - so there was a danger of + // We've chosen to not wrap the _lastApiInfo in a lock. Originally the code was returning a reference - so there was a danger of // on thread writing to the object while another was reading. Now we are cloning the ApiInfo on request - thus removing the need (or overhead) // of putting locks in place. // See https://github.com/octokit/octokit.net/pull/855#discussion_r36774884