first pass at cleaning up attributes (#2157)

This commit is contained in:
Brendan Forster
2020-03-18 09:02:11 -03:00
committed by GitHub
parent 327020750f
commit dc2f6ff001
54 changed files with 402 additions and 383 deletions
+2 -2
View File
@@ -87,7 +87,7 @@ namespace Octokit
/// </remarks>
/// <param name="id">The Id of the SSH key</param>
/// <returns></returns>
[ManualRoute("GET", "/user/keys/{public_key_id}")]
[ManualRoute("GET", "/user/keys/{key_id}")]
public Task<PublicKey> Get(int id)
{
return ApiConnection.Get<PublicKey>(ApiUrls.Keys(id));
@@ -117,7 +117,7 @@ namespace Octokit
/// </remarks>
/// <param name="id">The id of the key to delete</param>
/// <returns></returns>
[ManualRoute("DELETE", "/user/keys/{public_key_id}")]
[ManualRoute("DELETE", "/user/keys/{key_id}")]
public Task Delete(int id)
{
return ApiConnection.Delete(ApiUrls.Keys(id));