Renaming for 💋

This commit is contained in:
Mordechai Zuber
2016-01-26 10:59:02 +02:00
parent 0201d01c3b
commit ca187df6ab
2 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ namespace Octokit.Reactive
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
/// </remarks>
/// <returns></returns>
IObservable<PagesBuild> GetAllBuilds(string owner, string repositoryName);
IObservable<PagesBuild> GetAll(string owner, string repositoryName);
/// <summary>
/// Gets the build metadata for the last build for a given repository
/// </summary>
@@ -35,6 +35,6 @@ namespace Octokit.Reactive
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
/// </remarks>
/// <returns></returns>
IObservable<PagesBuild> GetLatestBuild(string owner, string repositoryName);
IObservable<PagesBuild> GetLatest(string owner, string repositoryName);
}
}

View File

@@ -45,7 +45,7 @@ namespace Octokit.Reactive
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
/// </remarks>
/// <returns></returns>
public IObservable<PagesBuild> GetAllBuilds(string owner, string repositoryName)
public IObservable<PagesBuild> GetAll(string owner, string repositoryName)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName");
@@ -62,7 +62,7 @@ namespace Octokit.Reactive
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
/// </remarks>
/// <returns></returns>
public IObservable<PagesBuild> GetLatestBuild(string owner, string repositoryName)
public IObservable<PagesBuild> GetLatest(string owner, string repositoryName)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName");