Browse Source

fully qualify internal for UrlValidation and add indent to summary

pull/1923/head
quin lynch 3 years ago
parent
commit
6aa1014095
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.Core/Utils/UrlValidation.cs

+ 2
- 2
src/Discord.Net.Core/Utils/UrlValidation.cs View File

@@ -2,10 +2,10 @@ using System;

namespace Discord.Utils
{
static class UrlValidation
internal static class UrlValidation
{
/// <summary>
/// Not full URL validation right now. Just ensures protocol is present and that it's either http or https
/// Not full URL validation right now. Just ensures protocol is present and that it's either http or https
/// </summary>
/// <param name="url">url to validate before sending to Discord.</param>
/// <exception cref="InvalidOperationException">A URL must include a protocol (http or https).</exception>


Loading…
Cancel
Save