diff --git a/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs b/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs
index 2594af76..3c6349e5 100644
--- a/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs
+++ b/Octokit.Reactive/Clients/IObservableIssueCommentReactionsClient.cs
@@ -18,7 +18,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// The comment id
/// The reaction to create
- /// An of < see cref="Reaction"/> representing created reaction for specified comment id.
+ /// An of representing created reaction for specified comment id.
IObservable Create(string owner, string name, int number, NewReaction reaction);
///
@@ -28,7 +28,7 @@ namespace Octokit.Reactive
/// The ID of the repository
/// The comment id
/// The reaction to create
- /// An of < see cref="Reaction"/> representing created reaction for specified comment id.
+ /// An of representing created reaction for specified comment id.
IObservable Create(int repositoryId, int number, NewReaction reaction);
///
diff --git a/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs b/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs
index 365698c3..396a447c 100644
--- a/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs
+++ b/Octokit.Reactive/Clients/ObservableIssueCommentReactionsClient.cs
@@ -31,7 +31,7 @@ namespace Octokit.Reactive
/// The name of the repository
/// The comment id
/// The reaction to create
- /// An of < see cref="Reaction"/> representing created reaction for specified comment id.
+ /// An of representing created reaction for specified comment id.
public IObservable Create(string owner, string name, int number, NewReaction reaction)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
@@ -48,7 +48,7 @@ namespace Octokit.Reactive
/// The ID of the repository
/// The comment id
/// The reaction to create
- /// An of < see cref="Reaction"/> representing created reaction for specified comment id.
+ /// An of representing created reaction for specified comment id.
public IObservable Create(int repositoryId, int number, NewReaction reaction)
{
Ensure.ArgumentNotNull(reaction, "reaction");