diff --git a/RGB.NET.Core/MVVM/AbstractBindable.cs b/RGB.NET.Core/MVVM/AbstractBindable.cs
index b12f302..1cb7197 100644
--- a/RGB.NET.Core/MVVM/AbstractBindable.cs
+++ b/RGB.NET.Core/MVVM/AbstractBindable.cs
@@ -27,7 +27,7 @@ public abstract class AbstractBindable : IBindable
/// Type of the property.
/// Reference to the backing-filed.
/// Value to apply.
- /// true if the value needs to be updated; otherweise false.
+ /// true if the value needs to be updated; otherwise false.
[MethodImpl(MethodImplOptions.AggressiveInlining)]
protected virtual bool RequiresUpdate(ref T storage, T value) => !EqualityComparer.Default.Equals(storage, value);