Ensure.ArgumentNotNullOrEmptyString secondParameters were fixed

This commit is contained in:
aedampir@gmail.com
2016-03-30 12:28:24 +07:00
parent 1335f37c6c
commit d8e091a9e6
6 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ namespace Octokit
/// <param name="sha">The SHA1 value to set this reference to</param>
public NewReference(string reference, string sha)
{
Ensure.ArgumentNotNullOrEmptyString(reference, "ref");
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
Ensure.ArgumentNotNullOrEmptyString(sha, "sha");
Ref = GetReference(reference);