diff --git a/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs b/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs
index 50971915..e3317e05 100644
--- a/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs
+++ b/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs
@@ -3,6 +3,12 @@ using System.Diagnostics.CodeAnalysis;
namespace Octokit.Reactive
{
+ ///
+ /// A client for GitHub's Issue Events API.
+ ///
+ ///
+ /// See the Issue Events API documentation for more information.
+ ///
public interface IObservableIssuesEventsClient
{
///
@@ -14,7 +20,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The issue number
- ///
+ /// A of s representing event information for specified number.
IObservable GetAllForIssue(string owner, string name, int number);
///
@@ -27,7 +33,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// The issue number
/// Options for changing the API response
- ///
+ /// A of s representing event information for specified number.
IObservable GetAllForIssue(string owner, string name, int number, ApiOptions options);
///
@@ -38,7 +44,7 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- ///
+ /// A of s representing issue events for specified repository.
IObservable GetAllForRepository(string owner, string name);
///
@@ -50,7 +56,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// Options for changing the API response
- ///
+ /// A of s representing issue events for specified repository.
IObservable GetAllForRepository(string owner, string name, ApiOptions options);
///
@@ -62,7 +68,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The event id
- ///
+ /// A representing issue event for specified number.
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
IObservable Get(string owner, string name, int number);
diff --git a/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs b/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs
index 8e735fc9..a0d81d14 100644
--- a/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs
+++ b/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs
@@ -4,6 +4,12 @@ using Octokit.Reactive.Internal;
namespace Octokit.Reactive
{
+ ///
+ /// A client for GitHub's Issue Events API.
+ ///
+ ///
+ /// See the Issue Events API documentation for more information.
+ ///
public class ObservableIssuesEventsClient : IObservableIssuesEventsClient
{
readonly IIssuesEventsClient _client;
@@ -26,7 +32,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The issue number
- ///
+ /// A of s representing event information for specified number.
public IObservable GetAllForIssue(string owner, string name, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -45,7 +51,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// The issue number
/// Options for changing the API response
- ///
+ /// A of s representing event information for specified number.
public IObservable GetAllForIssue(string owner, string name, int number, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -63,7 +69,7 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- ///
+ /// A of s representing issue events for specified repository.
public IObservable GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -81,7 +87,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// Options for changing the API response
- ///
+ /// A of s representing issue events for specified repository.
public IObservable GetAllForRepository(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -100,7 +106,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The event id
- ///
+ /// A representing issue event for specified number.
public IObservable Get(string owner, string name, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
diff --git a/Octokit/Clients/IIssuesEventsClient.cs b/Octokit/Clients/IIssuesEventsClient.cs
index 78ed5a43..7f410896 100644
--- a/Octokit/Clients/IIssuesEventsClient.cs
+++ b/Octokit/Clients/IIssuesEventsClient.cs
@@ -21,7 +21,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The issue number
- ///
+ /// A of s representing event information for specified number.
Task> GetAllForIssue(string owner, string name, int number);
///
@@ -34,7 +34,7 @@ namespace Octokit
/// The name of the repository
/// The issue number
/// Options for changing the API response
- ///
+ /// A of s representing event information for specified number.
Task> GetAllForIssue(string owner, string name, int number, ApiOptions options);
///
@@ -45,7 +45,7 @@ namespace Octokit
///
/// The owner of the repository
/// The name of the repository
- ///
+ /// A of s representing issue events for specified repository.
Task> GetAllForRepository(string owner, string name);
///
@@ -57,7 +57,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// Options for changing the API response
- ///
+ /// A of s representing issue events for specified repository.
Task> GetAllForRepository(string owner, string name, ApiOptions options);
///
@@ -69,7 +69,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The event id
- ///
+ /// A representing issue event for specified number.
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
Justification = "Method makes a network request")]
Task Get(string owner, string name, int number);
diff --git a/Octokit/Clients/IssuesEventsClient.cs b/Octokit/Clients/IssuesEventsClient.cs
index 1805563f..648bfeac 100644
--- a/Octokit/Clients/IssuesEventsClient.cs
+++ b/Octokit/Clients/IssuesEventsClient.cs
@@ -26,7 +26,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The issue number
- ///
+ /// A of s representing event information for specified number.
public Task> GetAllForIssue(string owner, string name, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -45,7 +45,7 @@ namespace Octokit
/// The name of the repository
/// The issue number
/// Options for changing the API response
- ///
+ /// A of s representing event information for specified number.
public Task> GetAllForIssue(string owner, string name, int number, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -63,7 +63,7 @@ namespace Octokit
///
/// The owner of the repository
/// The name of the repository
- ///
+ /// A of s representing issue events for specified repository.
public Task> GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -81,7 +81,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// Options for changing the API response
- ///
+ /// A of s representing issue events for specified repository.
public Task> GetAllForRepository(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -100,7 +100,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The event id
- ///
+ /// A representing issue event for specified number.
public Task Get(string owner, string name, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");