Browse Source

Fix typo in SetValue validation exception message (#18197)

pull/18198/head
Maxwell Katz 12 months ago
committed by GitHub
parent
commit
15841ef754
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/Avalonia.Base/PropertyStore/ValueStore.cs

2
src/Avalonia.Base/PropertyStore/ValueStore.cs

@ -200,7 +200,7 @@ namespace Avalonia.PropertyStore
{
if (property.ValidateValue?.Invoke(value) == false)
{
throw new ArgumentException($"{value} is not a valid value for '{property.Name}.");
throw new ArgumentException($"{value} is not a valid value for '{property.Name}'.");
}
if (priority != BindingPriority.LocalValue)

Loading…
Cancel
Save