diff --git a/Octokit/Clients/IGitHubAppsClient.cs b/Octokit/Clients/IGitHubAppsClient.cs
index 600a67db9d..a8e85ce36d 100644
--- a/Octokit/Clients/IGitHubAppsClient.cs
+++ b/Octokit/Clients/IGitHubAppsClient.cs
@@ -88,16 +88,14 @@ public interface IGitHubAppsClient
/// Enables an authenticated GitHub App to find the repository's installation information.
///
/// https://developer.github.com/v3/apps/#find-organization-installation
- /// The owner of the repo
- /// The name of the repo
+ /// The name of the organization
Task GetOrganizationInstallation(string organization);
///
/// Enables an authenticated GitHub App to find the users's installation information.
///
/// https://developer.github.com/v3/apps/#find-user-installation
- /// The owner of the repo
- /// The name of the repo
+ /// The name of the user
Task GetUserInstallation(string user);
}
}
\ No newline at end of file