From 15841ef754ce3a01fc258c180fe0b0f92f2e0db6 Mon Sep 17 00:00:00 2001 From: Maxwell Katz Date: Fri, 14 Feb 2025 02:33:49 -0800 Subject: [PATCH] Fix typo in SetValue validation exception message (#18197) --- src/Avalonia.Base/PropertyStore/ValueStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Avalonia.Base/PropertyStore/ValueStore.cs b/src/Avalonia.Base/PropertyStore/ValueStore.cs index 789383b860..9600e2d3bc 100644 --- a/src/Avalonia.Base/PropertyStore/ValueStore.cs +++ b/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)