mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 02:45:32 +00:00
Fixed up some simple documentation typos/missing params
This commit is contained in:
@@ -32,7 +32,7 @@ namespace Octokit
|
||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#create-a-release">API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
/// <param name="owner">The repository's owner.</param>
|
||||
/// <param name="name">The repository's name.</param
|
||||
/// <param name="name">The repository's name.</param>
|
||||
/// <param name="data">A description of the release to create.</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The created <see cref="Release"/>.</returns>
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace Octokit
|
||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#create-a-release">API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
/// <param name="owner">The repository's owner.</param>
|
||||
/// <param name="name">The repository's name.</param
|
||||
/// <param name="name">The repository's name.</param>
|
||||
/// <param name="data">A description of the release to create.</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The created <see cref="Release"/>.</returns>
|
||||
|
||||
@@ -4,7 +4,7 @@ using System.Collections.ObjectModel;
|
||||
namespace Octokit
|
||||
{
|
||||
/// <summary>
|
||||
/// Describes a new issue to create via the <see cref="IIssuesClient.Create(NewIssue)"/> method.
|
||||
/// Describes a new issue to create via the <see cref="IIssuesClient.Create(string,string,NewIssue)"/> method.
|
||||
/// </summary>
|
||||
public class NewIssue
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
namespace Octokit
|
||||
{
|
||||
/// <summary>
|
||||
/// Describes a new milestone to create via the <see cref="IMilestonesClient.Create(NewMilestone)"/> method.
|
||||
/// Describes a new milestone to create via the <see cref="IMilestonesClient.Create(string,string,NewMilestone)"/> method.
|
||||
/// </summary>
|
||||
public class NewMilestone
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user