From 44e416e2cd2d6a4c75ae6ac3b5b1da6edc330b01 Mon Sep 17 00:00:00 2001 From: robloo Date: Fri, 14 Oct 2022 21:19:28 -0400 Subject: [PATCH] AutoCompleteFilterMode comment fixes/improvements --- .../AutoCompleteBox/AutoCompleteFilterMode.cs | 44 +++++++++---------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/src/Avalonia.Controls/AutoCompleteBox/AutoCompleteFilterMode.cs b/src/Avalonia.Controls/AutoCompleteBox/AutoCompleteFilterMode.cs index 9aea49aef3..c17f5a19ab 100644 --- a/src/Avalonia.Controls/AutoCompleteBox/AutoCompleteFilterMode.cs +++ b/src/Avalonia.Controls/AutoCompleteBox/AutoCompleteFilterMode.cs @@ -3,13 +3,13 @@ // Please see https://go.microsoft.com/fwlink/?LinkID=131993 for details. // All other rights reserved. +using System; + namespace Avalonia.Controls { /// - /// Specifies how text in the text box portion of the - /// control is used - /// to filter items specified by the - /// + /// Specifies how text in the text box portion of the + /// control is used to filter items specified by the /// property for display in the drop-down. /// public enum AutoCompleteFilterMode @@ -22,9 +22,9 @@ namespace Avalonia.Controls /// /// Specifies a culture-sensitive, case-insensitive filter where the /// returned items start with the specified text. The filter uses the - /// + /// /// method, specifying - /// as + /// as /// the string comparison criteria. /// StartsWith = 1, @@ -32,9 +32,9 @@ namespace Avalonia.Controls /// /// Specifies a culture-sensitive, case-sensitive filter where the /// returned items start with the specified text. The filter uses the - /// + /// /// method, specifying - /// as the string + /// as the string /// comparison criteria. /// StartsWithCaseSensitive = 2, @@ -42,9 +42,9 @@ namespace Avalonia.Controls /// /// Specifies an ordinal, case-insensitive filter where the returned /// items start with the specified text. The filter uses the - /// + /// /// method, specifying - /// as the + /// as the /// string comparison criteria. /// StartsWithOrdinal = 3, @@ -52,8 +52,8 @@ namespace Avalonia.Controls /// /// Specifies an ordinal, case-sensitive filter where the returned items /// start with the specified text. The filter uses the - /// - /// method, specifying as + /// + /// method, specifying as /// the string comparison criteria. /// StartsWithOrdinalCaseSensitive = 4, @@ -85,9 +85,9 @@ namespace Avalonia.Controls /// /// Specifies a culture-sensitive, case-insensitive filter where the /// returned items equal the specified text. The filter uses the - /// + /// /// method, specifying - /// as + /// as /// the search comparison criteria. /// Equals = 9, @@ -95,9 +95,9 @@ namespace Avalonia.Controls /// /// Specifies a culture-sensitive, case-sensitive filter where the /// returned items equal the specified text. The filter uses the - /// + /// /// method, specifying - /// as the string + /// as the string /// comparison criteria. /// EqualsCaseSensitive = 10, @@ -105,9 +105,9 @@ namespace Avalonia.Controls /// /// Specifies an ordinal, case-insensitive filter where the returned /// items equal the specified text. The filter uses the - /// + /// /// method, specifying - /// as the + /// as the /// string comparison criteria. /// EqualsOrdinal = 11, @@ -115,17 +115,15 @@ namespace Avalonia.Controls /// /// Specifies an ordinal, case-sensitive filter where the returned items /// equal the specified text. The filter uses the - /// - /// method, specifying as + /// + /// method, specifying as /// the string comparison criteria. /// EqualsOrdinalCaseSensitive = 12, /// /// Specifies that a custom filter is used. This mode is used when the - /// - /// or - /// + /// or /// properties are set. /// Custom = 13,