diff --git a/Octokit/Clients/IRepoCollaboratorsClient.cs b/Octokit/Clients/IRepoCollaboratorsClient.cs
index 7f71df81..a609c447 100644
--- a/Octokit/Clients/IRepoCollaboratorsClient.cs
+++ b/Octokit/Clients/IRepoCollaboratorsClient.cs
@@ -43,5 +43,15 @@ namespace Octokit
/// Thrown when a general API error occurs.
///
Task Add(string owner, string repo, string user);
+
+ ///
+ /// Deletes a collaborator from the repo
+ ///
+ ///
+ /// See the API documentation for more information.
+ ///
+ /// Thrown when a general API error occurs.
+ ///
+ Task Delete(string owner, string repo, string user);
}
}
diff --git a/Octokit/Clients/RepoCollaboratorsClient.cs b/Octokit/Clients/RepoCollaboratorsClient.cs
index cf016619..ddcd29f7 100644
--- a/Octokit/Clients/RepoCollaboratorsClient.cs
+++ b/Octokit/Clients/RepoCollaboratorsClient.cs
@@ -92,5 +92,24 @@ namespace Octokit
return ApiConnection.Put