Skip to content

Commit

Permalink
Pedantic all the way
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Zuber committed Mar 10, 2016
1 parent a8162c4 commit e041f52
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions Octokit.Reactive/Clients/IObservableUserKeysClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public interface IObservableUserKeysClient
/// https://developer.github.com/v3/users/keys/#list-your-public-keys
/// </remarks>
/// <returns></returns>
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
IObservable<PublicKey> GetAllForCurrent();

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Octokit.Tests/Clients/UserKeysClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Octokit.Tests.Clients
{
public class UserKeysClientTests
{
public class TheGetAllMethod
public class TheGetAllForCurrentMethod
{
[Fact]
public void RequestsTheCorrectUrl()
Expand Down
2 changes: 1 addition & 1 deletion Octokit.Tests/Reactive/ObservableUserKeysClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Octokit.Tests.Reactive
{
public class ObservableUserKeysClientTests
{
public class TheGetAllMethod
public class TheGetAllForCurrentMethod
{
[Fact]
public void CallsIntoClient()
Expand Down
1 change: 1 addition & 0 deletions Octokit/Clients/IUserKeysClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public interface IUserKeysClient
/// https://developer.github.com/v3/users/keys/#list-your-public-keys
/// </remarks>
/// <returns></returns>
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
Task<IReadOnlyList<PublicKey>> GetAllForCurrent();

/// <summary>
Expand Down

0 comments on commit e041f52

Please sign in to comment.