Cleaned up interfaces and implementetation so convention tests pass

This commit is contained in:
John Du Hart
2014-05-19 22:47:52 -04:00
parent 568220de91
commit 7b9b06f495
8 changed files with 36 additions and 17 deletions

View File

@@ -14,7 +14,7 @@ namespace Octokit.Reactive
/// <remarks>See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.</remarks>
/// <returns></returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "This is ok; we're matching HTTP verbs not keyworks")]
IObservable<IReadOnlyList<Repository>> Get(string owner, string repositoryName);
IObservable<Repository> Get(string owner, string repositoryName);
/// <summary>
/// Creates a fork for a repository. Specify organization in the fork parameter to create for an organization.