corrected overload name to be consistent

This commit is contained in:
Brendan Forster
2014-02-07 09:52:02 +11:00
parent 724f7a6455
commit cb11fa696d
2 changed files with 2 additions and 2 deletions
@@ -41,7 +41,7 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <param name="subNamespace">The sub-namespace to get references for</param>
/// <returns></returns>
IObservable<Reference> GetAll(string owner, string name, string subNamespace);
IObservable<Reference> GetAllForSubNamespace(string owner, string name, string subNamespace);
/// <summary>
/// Creates a reference for a given repository
@@ -64,7 +64,7 @@ namespace Octokit.Reactive
/// <param name="name">The name of the repository</param>
/// <param name="subNamespace">The sub-namespace to get references for</param>
/// <returns></returns>
public IObservable<Reference> GetAll(string owner, string name, string subNamespace)
public IObservable<Reference> GetAllForSubNamespace(string owner, string name, string subNamespace)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");