Skip to content

Commit 9b34912

Browse files
committed
improve some comments
1 parent 73e5f15 commit 9b34912

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Microsoft.Toolkit.Uwp.UI.Controls.Input/RichSuggestBox/RichSuggestBox.Properties.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,9 @@ public SolidColorBrush TokenForeground
313313
/// <summary>
314314
/// Gets or sets prefix characters to start a query.
315315
/// </summary>
316+
/// <remarks>
317+
/// Prefix characters must be punctuations (must satisfy <see cref="char.IsPunctuation(char)"/> method).
318+
/// </remarks>
316319
public string Prefixes
317320
{
318321
get => (string)GetValue(PrefixesProperty);

Microsoft.Toolkit.Uwp.UI.Controls.Input/RichSuggestBox/RichSuggestBox.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ public RichSuggestBox()
7575
}
7676

7777
/// <summary>
78-
/// Clear unused tokens and undo/redo history. <see cref="RichSuggestBox"/> saves all of previously committed tokens
79-
/// even when they are removed from the text. They have to be manually removed using this method.
78+
/// Clear unused tokens and undo/redo history.
8079
/// </summary>
8180
public void ClearUndoRedoSuggestionHistory()
8281
{

0 commit comments

Comments
 (0)