From 3ea14d9cff36f186c9e8e756c8d5570d704b7109 Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Wed, 15 Jun 2016 17:06:48 +0700 Subject: [PATCH] XML docs fixes --- .../Clients/IObservableIssueCommentReactionsClient.cs | 4 ++-- .../Clients/ObservableIssueCommentReactionsClient.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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");