From 1e4e8654329c59c3b833799b9f5bf4766792f184 Mon Sep 17 00:00:00 2001 From: James Yarwood Date: Sun, 23 Jul 2023 18:11:08 +0100 Subject: [PATCH] Added missing summary to Bool32.Equals(object) --- src/Core/Silk.NET.Core/Miscellaneous/Bool32.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Core/Silk.NET.Core/Miscellaneous/Bool32.cs b/src/Core/Silk.NET.Core/Miscellaneous/Bool32.cs index 59d1134053..c24a70d2fc 100644 --- a/src/Core/Silk.NET.Core/Miscellaneous/Bool32.cs +++ b/src/Core/Silk.NET.Core/Miscellaneous/Bool32.cs @@ -15,6 +15,12 @@ namespace Silk.NET.Core /// public uint Value { get; } + /// + /// Compares the current to another . Returns true if they are equal. + /// + /// + /// True if is equal to the current . + /// This will always be false if is not a . public override bool Equals(object obj) { if (obj is Bool32 other)