From 363d1c6da6309dd98116979713f21011f682e357 Mon Sep 17 00:00:00 2001
From: Still Hsu <341464@gmail.com>
Date: Sat, 22 Jun 2019 05:23:03 +0800
Subject: [PATCH] docs: Fix invalid cref values in docs (#1329)
Signed-off-by: Still Hsu <341464@gmail.com>
---
src/Discord.Net.Rest/Entities/Channels/IRestMessageChannel.cs | 2 +-
src/Discord.Net.WebSocket/BaseSocketClient.Events.cs | 2 +-
src/Discord.Net.WebSocket/DiscordSocketConfig.cs | 3 ++-
.../Entities/Channels/ISocketMessageChannel.cs | 2 +-
.../Entities/Channels/SocketNewsChannel.cs | 2 +-
5 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/src/Discord.Net.Rest/Entities/Channels/IRestMessageChannel.cs b/src/Discord.Net.Rest/Entities/Channels/IRestMessageChannel.cs
index b5ebe8ec4..a28170eed 100644
--- a/src/Discord.Net.Rest/Entities/Channels/IRestMessageChannel.cs
+++ b/src/Discord.Net.Rest/Entities/Channels/IRestMessageChannel.cs
@@ -30,7 +30,7 @@ namespace Discord.Rest
///
///
/// This method follows the same behavior as described in
- /// . Please visit
+ /// . Please visit
/// its documentation for more details on this method.
///
/// The file path of the file.
diff --git a/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs b/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs
index f9a17ca2d..908314f6a 100644
--- a/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs
+++ b/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs
@@ -136,7 +136,7 @@ namespace Discord.WebSocket
///
///
/// This event is fired when multiple messages are bulk deleted. The event handler must return a
- /// and accept an and
+ /// and accept an and
/// as its parameters.
///
///
diff --git a/src/Discord.Net.WebSocket/DiscordSocketConfig.cs b/src/Discord.Net.WebSocket/DiscordSocketConfig.cs
index f766aeb46..4c96a317a 100644
--- a/src/Discord.Net.WebSocket/DiscordSocketConfig.cs
+++ b/src/Discord.Net.WebSocket/DiscordSocketConfig.cs
@@ -96,7 +96,8 @@ namespace Discord.WebSocket
/// due to this issue. This may be resolved at v3 of the library. Until then, you may want to consider
/// overriding the TypeReader and use
///
- /// or as a backup.
+ /// or
+ /// as a backup.
///
///
public bool AlwaysDownloadUsers { get; set; } = false;
diff --git a/src/Discord.Net.WebSocket/Entities/Channels/ISocketMessageChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/ISocketMessageChannel.cs
index 62f017138..b88d0106b 100644
--- a/src/Discord.Net.WebSocket/Entities/Channels/ISocketMessageChannel.cs
+++ b/src/Discord.Net.WebSocket/Entities/Channels/ISocketMessageChannel.cs
@@ -56,7 +56,7 @@ namespace Discord.WebSocket
/// Sends a file to this message channel with an optional caption.
///
///
- /// This method follows the same behavior as described in .
+ /// This method follows the same behavior as described in .
/// Please visit its documentation for more details on this method.
///
/// The of the file to be sent.
diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketNewsChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketNewsChannel.cs
index 53fea150f..3052fc82a 100644
--- a/src/Discord.Net.WebSocket/Entities/Channels/SocketNewsChannel.cs
+++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketNewsChannel.cs
@@ -7,7 +7,7 @@ using Model = Discord.API.Channel;
namespace Discord.WebSocket
{
///
- /// Represents a WebSocket-based news channel in a guild that has the same properties as a .
+ /// Represents a WebSocket-based news channel in a guild that has the same properties as a .
///
[DebuggerDisplay(@"{DebuggerDisplay,nq}")]
public class SocketNewsChannel : SocketTextChannel