Fixed edit release api #506

This commit is contained in:
Cameron MacFarland
2014-06-09 20:42:08 +08:00
parent 426b0f07f3
commit 3ffcc17dfd
6 changed files with 25 additions and 21 deletions
@@ -53,10 +53,11 @@ namespace Octokit.Reactive
/// </remarks>
/// <param name="owner">The repository's owner</param>
/// <param name="name">The repository's name</param>
/// <param name="number">The id of the release</param>
/// <param name="data">A description of the release to edit</param>
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
/// <returns>The updated <see cref="Release"/>.</returns>
IObservable<Release> EditRelease(string owner, string name, ReleaseUpdate data);
IObservable<Release> EditRelease(string owner, string name, int number, ReleaseUpdate data);
/// <summary>
/// Deletes an existing <see cref="Release"/> for the specified repository.