mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-08 12:42:32 +00:00
ID -> Id
This commit is contained in:
@@ -58,11 +58,11 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// View extended details of the <see cref="GpgKey"/> for the specified id.
|
||||
/// </summary>
|
||||
/// <param name="id">The ID of the GPG key</param>
|
||||
/// <param name="id">The Id of the GPG key</param>
|
||||
/// <remarks>
|
||||
/// 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>
|
||||
/// <returns>The <see cref="GpgKey"/> for the specified Id.</returns>
|
||||
public IObservable<GpgKey> Get(int id)
|
||||
{
|
||||
return _client.Get(id).ToObservable();
|
||||
@@ -84,9 +84,9 @@ namespace Octokit.Reactive
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Deletes the GPG key for the specified ID.
|
||||
/// Deletes the GPG key for the specified Id.
|
||||
/// </summary>
|
||||
/// <param name="id">The ID of the GPG key to delete.</param>
|
||||
/// <param name="id">The Id of the GPG key to delete.</param>
|
||||
/// <remarks>
|
||||
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#delete-a-gpg-key">API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
|
||||
Reference in New Issue
Block a user