diff --git a/docs/_template/light-dark-theme/styles/dark.css b/docs/_template/light-dark-theme/styles/dark.css index 8ae0049d1..54ad76c79 100644 --- a/docs/_template/light-dark-theme/styles/dark.css +++ b/docs/_template/light-dark-theme/styles/dark.css @@ -304,5 +304,5 @@ span.arrow-r{ } .logo-switcher { - background: url("/marketing/logo/SVG/Combinationmark White.svg") no-repeat; + background: url("../marketing/logo/SVG/Combinationmark White.svg") no-repeat; } diff --git a/docs/_template/light-dark-theme/styles/gray.css b/docs/_template/light-dark-theme/styles/gray.css index 32ff7d208..4cb658788 100644 --- a/docs/_template/light-dark-theme/styles/gray.css +++ b/docs/_template/light-dark-theme/styles/gray.css @@ -311,5 +311,5 @@ span.arrow-r{ } .logo-switcher { - background: url("/marketing/logo/SVG/Combinationmark White.svg") no-repeat; + background: url("../marketing/logo/SVG/Combinationmark White.svg") no-repeat; } diff --git a/docs/_template/light-dark-theme/styles/light.css b/docs/_template/light-dark-theme/styles/light.css index 71910e774..a2ba30788 100644 --- a/docs/_template/light-dark-theme/styles/light.css +++ b/docs/_template/light-dark-theme/styles/light.css @@ -113,5 +113,5 @@ span.arrow-r{ } .logo-switcher { - background: url("/marketing/logo/SVG/Combinationmark.svg") no-repeat; + background: url("../marketing/logo/SVG/Combinationmark.svg") no-repeat; } diff --git a/src/Discord.Net.WebSocket/DiscordSocketClient.cs b/src/Discord.Net.WebSocket/DiscordSocketClient.cs index 196aedf47..96286d318 100644 --- a/src/Discord.Net.WebSocket/DiscordSocketClient.cs +++ b/src/Discord.Net.WebSocket/DiscordSocketClient.cs @@ -83,7 +83,7 @@ namespace Discord.WebSocket /// /// /// - /// An collection of DM channels that have been opened in this session. + /// A collection of DM channels that have been opened in this session. /// public IReadOnlyCollection DMChannels => State.PrivateChannels.OfType().ToImmutableArray(); @@ -98,7 +98,7 @@ namespace Discord.WebSocket /// /// /// - /// An collection of group channels that have been opened in this session. + /// A collection of group channels that have been opened in this session. /// public IReadOnlyCollection GroupChannels => State.PrivateChannels.OfType().ToImmutableArray();