Skip to content

Commit

Permalink
Added missing summary to Bool32.Equals(object)
Browse files Browse the repository at this point in the history
  • Loading branch information
Syncaidius committed Jul 23, 2023
1 parent cc0ee00 commit 1e4e865
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Core/Silk.NET.Core/Miscellaneous/Bool32.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ namespace Silk.NET.Core
/// </summary>
public uint Value { get; }

/// <summary>
/// Compares the current <see cref="Bool32"/> to another <see cref="object"/>. Returns true if they are equal.
/// </summary>
/// <param name="obj"></param>
/// <returns>True if <paramref name="obj"/> is equal to the current <see cref="Bool32"/>.
/// This will always be false if <paramref name="obj"/> is not a <see cref="Bool32"/>.</returns>
public override bool Equals(object obj)
{
if (obj is Bool32 other)
Expand Down

0 comments on commit 1e4e865

Please sign in to comment.