From a6b60a2bd5918cd30158cef99f7d35c012ed68b3 Mon Sep 17 00:00:00 2001 From: Jason Kanaris Date: Tue, 15 Jul 2014 23:30:19 -0400 Subject: [PATCH] Forgot some xml-doc items in the ITeamsClient --- Octokit/Clients/ITeamsClient.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Octokit/Clients/ITeamsClient.cs b/Octokit/Clients/ITeamsClient.cs index 57ed5021..6af3a7a3 100644 --- a/Octokit/Clients/ITeamsClient.cs +++ b/Octokit/Clients/ITeamsClient.cs @@ -108,10 +108,11 @@ namespace Octokit /// The team identifier. /// Org to associate the repo with. /// Name of the repo. + /// Thrown if you attempt to add a repository to a team that is not owned by the organization. /// /// See the API documentation for more information. /// - /// + /// if the repository was added to the team; otherwise. Task AddRepository(int id, string org, string repo); /// @@ -123,7 +124,7 @@ namespace Octokit /// /// See the API documentation for more information. /// - /// + /// if the repository was removed from the team; otherwise. Task RemoveRepository(int id, string owner, string repo); /// @@ -135,7 +136,7 @@ namespace Octokit /// /// See the API documentation for more information. /// - /// + /// if the repository is managed by the given team; otherwise. Task IsRepositoryManagedByTeam(int id, string owner, string repo); } }