diff --git a/Octokit.Reactive/Clients/IObservableIssueReactionsClient.cs b/Octokit.Reactive/Clients/IObservableIssueReactionsClient.cs
index 03aa0e90..e26aa65a 100644
--- a/Octokit.Reactive/Clients/IObservableIssueReactionsClient.cs
+++ b/Octokit.Reactive/Clients/IObservableIssueReactionsClient.cs
@@ -17,16 +17,16 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The issue id
- /// An representing s for a specified issue.
+ /// An representing s for a specified issue.
IObservable GetAll(string owner, string name, int number);
-
+
///
/// List reactions for a specified Issue.
///
/// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue
/// The ID of the repository
/// The issue id
- /// An representing s for a specified issue.
+ /// An representing s for a specified issue.
IObservable GetAll(int repositoryId, int number);
///
@@ -37,7 +37,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// The issue id
/// The reaction to create
- /// An representing created for a specified issue.
+ /// An representing created for a specified issue.
IObservable Create(string owner, string name, int number, NewReaction reaction);
///
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
/// The ID of the repository
/// The issue id
/// The reaction to create
- /// An representing created for a specified issue.
+ /// An representing created for a specified issue.
IObservable Create(int repositoryId, int number, NewReaction reaction);
}
}
diff --git a/Octokit.Reactive/Clients/ObservableIssueReactionsClient.cs b/Octokit.Reactive/Clients/ObservableIssueReactionsClient.cs
index e52ca42e..dc0c8763 100644
--- a/Octokit.Reactive/Clients/ObservableIssueReactionsClient.cs
+++ b/Octokit.Reactive/Clients/ObservableIssueReactionsClient.cs
@@ -30,7 +30,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The issue id
- /// An representing s for a specified issue.
+ /// An representing s for a specified issue.
public IObservable GetAll(string owner, string name, int number)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
/// https://developer.github.com/v3/reactions/#list-reactions-for-an-issue
/// The ID of the repository
/// The issue id
- /// An representing s for a specified issue.
+ /// An representing s for a specified issue.
public IObservable GetAll(int repositoryId, int number)
{
return _connection.GetAndFlattenAllPages(ApiUrls.IssueReactions(repositoryId, number), null, AcceptHeaders.ReactionsPreview);
@@ -59,7 +59,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// The issue id
/// The reaction to create
- /// An representing created for a specified issue.
+ /// An representing created for a specified issue.
public IObservable Create(string owner, string name, int number, NewReaction reaction)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -76,7 +76,7 @@ namespace Octokit.Reactive
/// The ID of the repository
/// The issue id
/// The reaction to create
- /// An representing created for a specified issue.
+ /// An representing created for a specified issue.
public IObservable Create(int repositoryId, int number, NewReaction reaction)
{
Ensure.ArgumentNotNull(reaction, "reaction");