diff --git a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs
index e3000d98..c1ca2374 100644
--- a/Octokit.Reactive/Clients/IObservableAssigneesClient.cs
+++ b/Octokit.Reactive/Clients/IObservableAssigneesClient.cs
@@ -15,14 +15,14 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
IObservable GetAllForRepository(string owner, string name);
///
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
///
/// The ID of the repository
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
IObservable GetAllForRepository(int repositoryId);
///
@@ -31,7 +31,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The options to change API's behaviour.
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
IObservable GetAllForRepository(string owner, string name, ApiOptions options);
///
@@ -39,7 +39,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The options to change API's behaviour.
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
IObservable GetAllForRepository(int repositoryId, ApiOptions options);
///
diff --git a/Octokit.Reactive/Clients/ObservableAssigneesClient.cs b/Octokit.Reactive/Clients/ObservableAssigneesClient.cs
index 60dfe5d9..f64f7bf1 100644
--- a/Octokit.Reactive/Clients/ObservableAssigneesClient.cs
+++ b/Octokit.Reactive/Clients/ObservableAssigneesClient.cs
@@ -28,7 +28,7 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
public IObservable GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -41,7 +41,7 @@ namespace Octokit.Reactive
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
///
/// The ID of the repository
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
public IObservable GetAllForRepository(int repositoryId)
{
return GetAllForRepository(repositoryId, ApiOptions.None);
@@ -53,7 +53,7 @@ namespace Octokit.Reactive
/// The owner of the repository
/// The name of the repository
/// The options to change API's behaviour.
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
public IObservable GetAllForRepository(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -68,7 +68,7 @@ namespace Octokit.Reactive
///
/// The ID of the repository
/// The options to change API's behaviour.
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
public IObservable GetAllForRepository(int repositoryId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, "options");
diff --git a/Octokit/Clients/AssigneesClient.cs b/Octokit/Clients/AssigneesClient.cs
index 74c8c31e..efa384c7 100644
--- a/Octokit/Clients/AssigneesClient.cs
+++ b/Octokit/Clients/AssigneesClient.cs
@@ -24,7 +24,7 @@ namespace Octokit
///
/// The owner of the repository
/// The name of the repository
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
public Task> GetAllForRepository(string owner, string name)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -37,7 +37,7 @@ namespace Octokit
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
///
/// The ID of the repository
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
public Task> GetAllForRepository(int repositoryId)
{
return GetAllForRepository(repositoryId, ApiOptions.None);
@@ -49,7 +49,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The options to change API's response.
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
public Task> GetAllForRepository(string owner, string name, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -66,7 +66,7 @@ namespace Octokit
///
/// The ID of the repository
/// The options to change API's response.
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
public Task> GetAllForRepository(int repositoryId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, "options");
diff --git a/Octokit/Clients/IAssigneesClient.cs b/Octokit/Clients/IAssigneesClient.cs
index 6154821d..24748a9c 100644
--- a/Octokit/Clients/IAssigneesClient.cs
+++ b/Octokit/Clients/IAssigneesClient.cs
@@ -16,14 +16,14 @@ namespace Octokit
///
/// The owner of the repository
/// The name of the repository
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
Task> GetAllForRepository(string owner, string name);
///
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
///
/// The ID of the repository
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
Task> GetAllForRepository(int repositoryId);
///
@@ -32,7 +32,7 @@ namespace Octokit
/// The owner of the repository
/// The name of the repository
/// The options to change API's response.
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
Task> GetAllForRepository(string owner, string name, ApiOptions options);
///
@@ -40,7 +40,7 @@ namespace Octokit
///
/// The ID of the repository
/// The options to change API's response.
- /// A of representing assignees of specified repository.
+ /// A of s representing assignees of specified repository.
Task> GetAllForRepository(int repositoryId, ApiOptions options);
///