diff --git a/Octokit.Reactive/Clients/IObservableRepoCollaboratorsClient.cs b/Octokit.Reactive/Clients/IObservableRepoCollaboratorsClient.cs
index 8d9b1373..bb49811a 100644
--- a/Octokit.Reactive/Clients/IObservableRepoCollaboratorsClient.cs
+++ b/Octokit.Reactive/Clients/IObservableRepoCollaboratorsClient.cs
@@ -92,7 +92,7 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- /// Username of the prospective collaborator
+ /// Username of the new collaborator
/// Thrown when a general API error occurs.
///
IObservable Add(string owner, string name, string user);
@@ -117,7 +117,7 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- /// Username of the prospective collaborator
+ /// Username of the removed collaborator
/// Thrown when a general API error occurs.
///
IObservable Delete(string owner, string name, string user);
diff --git a/Octokit.Reactive/Clients/ObservableRepoCollaboratorsClient.cs b/Octokit.Reactive/Clients/ObservableRepoCollaboratorsClient.cs
index 1240f2f0..5177dda4 100644
--- a/Octokit.Reactive/Clients/ObservableRepoCollaboratorsClient.cs
+++ b/Octokit.Reactive/Clients/ObservableRepoCollaboratorsClient.cs
@@ -142,7 +142,7 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- /// Username of the prospective collaborator
+ /// Username of the new collaborator
/// Thrown when a general API error occurs.
///
public IObservable Add(string owner, string name, string user)
@@ -179,7 +179,7 @@ namespace Octokit.Reactive
///
/// The owner of the repository
/// The name of the repository
- /// Username of the prospective collaborator
+ /// Username of the deleted collaborator
/// Thrown when a general API error occurs.
///
public IObservable Delete(string owner, string name, string user)
@@ -198,7 +198,7 @@ namespace Octokit.Reactive
/// See the API documentation for more information.
///
/// The id of the repository
- /// Username of the removed collaborator
+ /// Username of the deleted collaborator
/// Thrown when a general API error occurs.
///
public IObservable Delete(int repositoryId, string user)
diff --git a/Octokit/Clients/RepoCollaboratorsClient.cs b/Octokit/Clients/RepoCollaboratorsClient.cs
index 18137e51..099e2e89 100644
--- a/Octokit/Clients/RepoCollaboratorsClient.cs
+++ b/Octokit/Clients/RepoCollaboratorsClient.cs
@@ -189,7 +189,7 @@ namespace Octokit
///
/// The owner of the repository
/// The name of the repository
- /// Username of the removed collaborator
+ /// Username of the deleted collaborator
/// Thrown when a general API error occurs.
///
public Task Delete(string owner, string name, string user)
@@ -208,7 +208,7 @@ namespace Octokit
/// See the API documentation for more information.
///
/// The id of the repository
- /// Username of the removed collaborator
+ /// Username of the deleted collaborator
/// Thrown when a general API error occurs.
///
public Task Delete(int repositoryId, string user)