From 4bcf08a9dc70efe18cc48fd6ca01679195bec683 Mon Sep 17 00:00:00 2001 From: robloo Date: Sat, 27 May 2023 20:00:37 -0400 Subject: [PATCH] Update RangeBaseValueChangedEventArgs comments --- .../Primitives/RangeBaseValueChangedEventArgs.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Avalonia.Controls/Primitives/RangeBaseValueChangedEventArgs.cs b/src/Avalonia.Controls/Primitives/RangeBaseValueChangedEventArgs.cs index ce1ac90bc6..480e82e4fc 100644 --- a/src/Avalonia.Controls/Primitives/RangeBaseValueChangedEventArgs.cs +++ b/src/Avalonia.Controls/Primitives/RangeBaseValueChangedEventArgs.cs @@ -10,8 +10,8 @@ namespace Avalonia.Controls.Primitives /// /// Initializes a new instance of the class. /// - /// The old property value. - /// The new property value. + /// The old value of the range value property. + /// The new value of the range value property. /// The routed event associated with these event args. public RangeBaseValueChangedEventArgs(double oldValue, double newValue, RoutedEvent? routedEvent) : base(routedEvent) @@ -23,8 +23,8 @@ namespace Avalonia.Controls.Primitives /// /// Initializes a new instance of the class. /// - /// The old property value. - /// The new property value. + /// The old value of the range value property. + /// The new value of the range value property. /// The routed event associated with these event args. /// The source object that raised the routed event. public RangeBaseValueChangedEventArgs(double oldValue, double newValue, RoutedEvent? routedEvent, object? source) @@ -35,12 +35,12 @@ namespace Avalonia.Controls.Primitives } /// - /// Gets the old value of the property. + /// Gets the old value of the range value property. /// public double OldValue { get; init; } /// - /// Gets the new value of the property. + /// Gets the new value of the range value property. /// public double NewValue { get; init; } }