Browse Source

another typo -_-

pull/2347/head
Misha133 3 years ago
parent
commit
1fdecfc50c
9 changed files with 23 additions and 23 deletions
  1. +2
    -2
      src/Discord.Net.Core/Entities/Messages/Embed.cs
  2. +2
    -2
      src/Discord.Net.Core/Entities/Messages/EmbedAuthor.cs
  3. +7
    -7
      src/Discord.Net.Core/Entities/Messages/EmbedBuilder.cs
  4. +2
    -2
      src/Discord.Net.Core/Entities/Messages/EmbedField.cs
  5. +2
    -2
      src/Discord.Net.Core/Entities/Messages/EmbedFooter.cs
  6. +2
    -2
      src/Discord.Net.Core/Entities/Messages/EmbedImage.cs
  7. +2
    -2
      src/Discord.Net.Core/Entities/Messages/EmbedProvider.cs
  8. +2
    -2
      src/Discord.Net.Core/Entities/Messages/EmbedThumbnail.cs
  9. +2
    -2
      src/Discord.Net.Core/Entities/Messages/EmbedVideo.cs

+ 2
- 2
src/Discord.Net.Core/Entities/Messages/Embed.cs View File

@@ -103,7 +103,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="Embed"/>.
/// Determines whether the specified object is equal to the current <see cref="Embed"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="Embed"/>, <see cref="Equals(Embed)"/> will be called to compare the 2 instances
@@ -114,7 +114,7 @@ namespace Discord
=> obj is Embed embed && Equals(embed);

/// <summary>
/// Determines whether the specified <see cref="Embed"/> is equals to the current <see cref="Embed"/>
/// Determines whether the specified <see cref="Embed"/> is equal to the current <see cref="Embed"/>
/// </summary>
/// <param name="embed">The <see cref="Embed"/> to compare with the current <see cref="Embed"/></param>
/// <returns></returns>


+ 2
- 2
src/Discord.Net.Core/Entities/Messages/EmbedAuthor.cs View File

@@ -51,7 +51,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedAuthor"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedAuthor"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedAuthor"/>, <see cref="Equals(EmbedAuthor)"/> will be called to compare the 2 instances
@@ -62,7 +62,7 @@ namespace Discord
=> obj is EmbedAuthor embedAuthor && Equals(embedAuthor);

/// <summary>
/// Determines whether the specified <see cref="EmbedAuthor"/> is equals to the current <see cref="EmbedAuthor"/>
/// Determines whether the specified <see cref="EmbedAuthor"/> is equal to the current <see cref="EmbedAuthor"/>
/// </summary>
/// <param name="embedAuthor">The <see cref="EmbedAuthor"/> to compare with the current <see cref="EmbedAuthor"/></param>
/// <returns></returns>


+ 7
- 7
src/Discord.Net.Core/Entities/Messages/EmbedBuilder.cs View File

@@ -490,7 +490,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedBuilder"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedBuilder"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedBuilder"/>, <see cref="Equals(EmbedBuilder)"/> will be called to compare the 2 instances
@@ -501,7 +501,7 @@ namespace Discord
=> obj is EmbedBuilder embedBuilder && Equals(embedBuilder);

/// <summary>
/// Determines whether the specified <see cref="EmbedBuilder"/> is equals to the current <see cref="EmbedBuilder"/>
/// Determines whether the specified <see cref="EmbedBuilder"/> is equal to the current <see cref="EmbedBuilder"/>
/// </summary>
/// <param name="embedBuilder">The <see cref="EmbedBuilder"/> to compare with the current <see cref="EmbedBuilder"/></param>
/// <returns></returns>
@@ -652,7 +652,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedFieldBuilder"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedFieldBuilder"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedFieldBuilder"/>, <see cref="Equals(EmbedFieldBuilder)"/> will be called to compare the 2 instances
@@ -663,7 +663,7 @@ namespace Discord
=> obj is EmbedFieldBuilder embedFieldBuilder && Equals(embedFieldBuilder);

/// <summary>
/// Determines whether the specified <see cref="EmbedFieldBuilder"/> is equals to the current <see cref="EmbedFieldBuilder"/>
/// Determines whether the specified <see cref="EmbedFieldBuilder"/> is equal to the current <see cref="EmbedFieldBuilder"/>
/// </summary>
/// <param name="embedFieldBuilder">The <see cref="EmbedFieldBuilder"/> to compare with the current <see cref="EmbedFieldBuilder"/></param>
/// <returns></returns>
@@ -783,7 +783,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedAuthorBuilder"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedAuthorBuilder"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedAuthorBuilder"/>, <see cref="Equals(EmbedAuthorBuilder)"/> will be called to compare the 2 instances
@@ -894,7 +894,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedFooterBuilder"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedFooterBuilder"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedFooterBuilder"/>, <see cref="Equals(EmbedFooterBuilder)"/> will be called to compare the 2 instances
@@ -905,7 +905,7 @@ namespace Discord
=> obj is EmbedFooterBuilder embedFooterBuilder && Equals(embedFooterBuilder);

/// <summary>
/// Determines whether the specified <see cref="EmbedFooterBuilder"/> is equals to the current <see cref="EmbedFooterBuilder"/>
/// Determines whether the specified <see cref="EmbedFooterBuilder"/> is equal to the current <see cref="EmbedFooterBuilder"/>
/// </summary>
/// <param name="embedFooterBuilder">The <see cref="EmbedFooterBuilder"/> to compare with the current <see cref="EmbedFooterBuilder"/></param>
/// <returns></returns>


+ 2
- 2
src/Discord.Net.Core/Entities/Messages/EmbedField.cs View File

@@ -46,7 +46,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedField"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedField"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedField"/>, <see cref="Equals(EmbedField)"/> will be called to compare the 2 instances
@@ -57,7 +57,7 @@ namespace Discord
=> obj is EmbedField embedField && Equals(embedField);

/// <summary>
/// Determines whether the specified <see cref="EmbedField"/> is equals to the current <see cref="EmbedField"/>
/// Determines whether the specified <see cref="EmbedField"/> is equal to the current <see cref="EmbedField"/>
/// </summary>
/// <param name="embedField"></param>
/// <returns></returns>


+ 2
- 2
src/Discord.Net.Core/Entities/Messages/EmbedFooter.cs View File

@@ -53,7 +53,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedFooter"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedFooter"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedFooter"/>, <see cref="Equals(EmbedFooter)"/> will be called to compare the 2 instances
@@ -64,7 +64,7 @@ namespace Discord
=> obj is EmbedFooter embedFooter && Equals(embedFooter);

/// <summary>
/// Determines whether the specified <see cref="EmbedFooter"/> is equals to the current <see cref="EmbedFooter"/>
/// Determines whether the specified <see cref="EmbedFooter"/> is equal to the current <see cref="EmbedFooter"/>
/// </summary>
/// <param name="embedFooter">The <see cref="EmbedFooter"/> to compare with the current <see cref="EmbedFooter"/></param>
/// <returns></returns>


+ 2
- 2
src/Discord.Net.Core/Entities/Messages/EmbedImage.cs View File

@@ -63,7 +63,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedImage"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedImage"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedImage"/>, <see cref="Equals(EmbedImage)"/> will be called to compare the 2 instances
@@ -74,7 +74,7 @@ namespace Discord
=> obj is EmbedImage embedImage && Equals(embedImage);

/// <summary>
/// Determines whether the specified <see cref="EmbedImage"/> is equals to the current <see cref="EmbedImage"/>
/// Determines whether the specified <see cref="EmbedImage"/> is equal to the current <see cref="EmbedImage"/>
/// </summary>
/// <param name="embedImage">The <see cref="EmbedImage"/> to compare with the current <see cref="EmbedImage"/></param>
/// <returns></returns>


+ 2
- 2
src/Discord.Net.Core/Entities/Messages/EmbedProvider.cs View File

@@ -45,7 +45,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedProvider"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedProvider"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedProvider"/>, <see cref="Equals(EmbedProvider)"/> will be called to compare the 2 instances
@@ -56,7 +56,7 @@ namespace Discord
=> obj is EmbedProvider embedProvider && Equals(embedProvider);

/// <summary>
/// Determines whether the specified <see cref="EmbedProvider"/> is equals to the current <see cref="EmbedProvider"/>
/// Determines whether the specified <see cref="EmbedProvider"/> is equal to the current <see cref="EmbedProvider"/>
/// </summary>
/// <param name="embedProvider">The <see cref="EmbedProvider"/> to compare with the current <see cref="EmbedProvider"/></param>
/// <returns></returns>


+ 2
- 2
src/Discord.Net.Core/Entities/Messages/EmbedThumbnail.cs View File

@@ -63,7 +63,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedThumbnail"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedThumbnail"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedThumbnail"/>, <see cref="Equals(EmbedThumbnail)"/> will be called to compare the 2 instances
@@ -74,7 +74,7 @@ namespace Discord
=> obj is EmbedThumbnail embedThumbnail && Equals(embedThumbnail);

/// <summary>
/// Determines whether the specified <see cref="EmbedThumbnail"/> is equals to the current <see cref="EmbedThumbnail"/>
/// Determines whether the specified <see cref="EmbedThumbnail"/> is equal to the current <see cref="EmbedThumbnail"/>
/// </summary>
/// <param name="embedThumbnail">The <see cref="EmbedThumbnail"/> to compare with the current <see cref="EmbedThumbnail"/></param>
/// <returns></returns>


+ 2
- 2
src/Discord.Net.Core/Entities/Messages/EmbedVideo.cs View File

@@ -57,7 +57,7 @@ namespace Discord
=> !(left == right);

/// <summary>
/// Determines whether the specified object is equals to the current <see cref="EmbedVideo"/>.
/// Determines whether the specified object is equal to the current <see cref="EmbedVideo"/>.
/// </summary>
/// <remarks>
/// If the object passes is an <see cref="EmbedVideo"/>, <see cref="Equals(EmbedVideo)"/> will be called to compare the 2 instances
@@ -68,7 +68,7 @@ namespace Discord
=> obj is EmbedVideo embedVideo && Equals(embedVideo);

/// <summary>
/// Determines whether the specified <see cref="EmbedVideo"/> is equals to the current <see cref="EmbedVideo"/>
/// Determines whether the specified <see cref="EmbedVideo"/> is equal to the current <see cref="EmbedVideo"/>
/// </summary>
/// <param name="embedVideo">The <see cref="EmbedVideo"/> to compare with the current <see cref="EmbedVideo"/></param>
/// <returns></returns>


Loading…
Cancel
Save