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
@@ -79,7 +79,7 @@ namespace Octokit
return response.BodyAsObject;
}
public async Task<T> Update<T>(Uri endpoint, object data)
public async Task<T> Patch<T>(Uri endpoint, object data)
{
Ensure.ArgumentNotNull(endpoint, "endpoint");
Ensure.ArgumentNotNull(data, "data");