mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 12:03:19 +00:00
Prefer using nameof(x) over literal "x" (#1781)
* updated XML docs and added some missing bits. * prefer nameof(x) over literal "x"
This commit is contained in:
committed by
Ryan Gribble
parent
c223f5ae9a
commit
4e804f61a6
@@ -18,7 +18,7 @@ namespace Octokit.Internal
|
||||
|
||||
public static ApiInfo ParseResponseHeaders(IDictionary<string, string> responseHeaders)
|
||||
{
|
||||
Ensure.ArgumentNotNull(responseHeaders, "responseHeaders");
|
||||
Ensure.ArgumentNotNull(responseHeaders, nameof(responseHeaders));
|
||||
|
||||
var httpLinks = new Dictionary<string, Uri>();
|
||||
var oauthScopes = new List<string>();
|
||||
|
||||
Reference in New Issue
Block a user