use HTTP verbs for clarity: PATCH edition

This commit is contained in:
half-ogre
2013-10-14 12:41:35 -07:00
parent e933ca7391
commit 5ff270dc55
9 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ namespace Octokit
{
Ensure.ArgumentNotNull(user, "user");
return await Client.Update<User>(userEndpoint, user);
return await Client.Patch<User>(userEndpoint, user);
}
/// <summary>