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
@@ -58,7 +58,7 @@ namespace Octokit
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#get-a-single-gpg-key">API documentation</a> for more information.
/// </remarks>
/// <returns>The <see cref="GpgKey"/> for the specified Id.</returns>
[ManualRoute("GET", "/user/gpg_keys/{id}")]
[ManualRoute("GET", "/user/gpg_keys/{gpg_key_id}")]
public Task<GpgKey> Get(int id)
{
return ApiConnection.Get<GpgKey>(ApiUrls.GpgKeys(id));
@@ -88,7 +88,7 @@ namespace Octokit
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#delete-a-gpg-key">API documentation</a> for more information.
/// </remarks>
/// <returns></returns>
[ManualRoute("DELETE", "/user/gpg_keys/{id}")]
[ManualRoute("DELETE", "/user/gpg_keys/{gpg_key_id}")]
public Task Delete(int id)
{
return ApiConnection.Delete(ApiUrls.GpgKeys(id));