diff --git a/Octokit.Reactive/Clients/IObservableRepositoryHooksClient.cs b/Octokit.Reactive/Clients/IObservableRepositoryHooksClient.cs
index 5a37bc90..8700c1a3 100644
--- a/Octokit.Reactive/Clients/IObservableRepositoryHooksClient.cs
+++ b/Octokit.Reactive/Clients/IObservableRepositoryHooksClient.cs
@@ -42,7 +42,7 @@ namespace Octokit.Reactive
///
/// Gets the list of hooks defined for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// Options for changing the API response
/// See API documentation for more information.
///
@@ -62,7 +62,7 @@ namespace Octokit.Reactive
///
/// Gets a single hook by Id
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// See API documentation for more information.
///
@@ -82,7 +82,7 @@ namespace Octokit.Reactive
///
/// Creates a hook for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// The hook's parameters
/// See API documentation for more information.
///
@@ -102,7 +102,7 @@ namespace Octokit.Reactive
///
/// Edits a hook for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// The requested changes to an edit repository hook
/// See API documentation for more information.
@@ -124,7 +124,7 @@ namespace Octokit.Reactive
///
/// Tests a hook for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// See API documentation for more information.
/// This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook
@@ -145,7 +145,7 @@ namespace Octokit.Reactive
///
/// This will trigger a ping event to be sent to the hook.
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// See API documentation for more information.
///
@@ -164,7 +164,7 @@ namespace Octokit.Reactive
///
/// Deletes a hook for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// See API documentation for more information.
///
diff --git a/Octokit.Reactive/Clients/ObservableRepositoryHooksClient.cs b/Octokit.Reactive/Clients/ObservableRepositoryHooksClient.cs
index 26f1b736..7eda0858 100644
--- a/Octokit.Reactive/Clients/ObservableRepositoryHooksClient.cs
+++ b/Octokit.Reactive/Clients/ObservableRepositoryHooksClient.cs
@@ -15,11 +15,7 @@ namespace Octokit.Reactive
{
readonly IRepositoryHooksClient _client;
readonly IConnection _connection;
-
- ///
- /// Initializes a new GitHub Webhooks API client.
- ///
- ///
+
public ObservableRepositoryHooksClient(IGitHubClient client)
{
Ensure.ArgumentNotNull(client, "client");
@@ -74,7 +70,7 @@ namespace Octokit.Reactive
///
/// Gets the list of hooks defined for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// Options for changing the API response
/// See API documentation for more information.
///
@@ -104,7 +100,7 @@ namespace Octokit.Reactive
///
/// Gets a single hook by Id
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// See API documentation for more information.
///
@@ -133,7 +129,7 @@ namespace Octokit.Reactive
///
/// Creates a hook for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// The hook's parameters
/// See API documentation for more information.
///
@@ -165,7 +161,7 @@ namespace Octokit.Reactive
///
/// Edits a hook for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// The requested changes to an edit repository hook
/// See API documentation for more information.
@@ -198,7 +194,7 @@ namespace Octokit.Reactive
///
/// Tests a hook for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// See API documentation for more information.
/// This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook
@@ -228,7 +224,7 @@ namespace Octokit.Reactive
///
/// This will trigger a ping event to be sent to the hook.
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// See API documentation for more information.
///
@@ -256,7 +252,7 @@ namespace Octokit.Reactive
///
/// Deletes a hook for a repository
///
- /// The repository's owner
+ /// The repository's ID
/// The repository's hook id
/// See API documentation for more information.
///