From 91f5bb68edd9382e9ba727d32a6b73bf94d491f7 Mon Sep 17 00:00:00 2001 From: Yimeng Wu Date: Fri, 12 Jun 2020 21:19:15 +0800 Subject: [PATCH] remove use of blacklist/whitelist terminology (microsoft/microsoft-ui-xaml#2622) --- ModernWpf.Controls/PersonPicture/InitialsGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModernWpf.Controls/PersonPicture/InitialsGenerator.cs b/ModernWpf.Controls/PersonPicture/InitialsGenerator.cs index bf2cb167..dd0b2a6f 100644 --- a/ModernWpf.Controls/PersonPicture/InitialsGenerator.cs +++ b/ModernWpf.Controls/PersonPicture/InitialsGenerator.cs @@ -160,7 +160,7 @@ public static CharacterType GetCharacterType(string str) /// public static CharacterType GetCharacterType(char character) { - // To ensure predictable behavior, we're currently operating on a whitelist of character sets. + // To ensure predictable behavior, we're currently operating on an allowed list of character sets. // // Each block below is a HEX range in the official Unicode spec, which defines a set // of Unicode characters. Changes to the character sets would only be made by Unicode, and