From 34c679b189b7197879e016d4f84727501e81631a Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Fri, 18 Dec 2020 00:43:07 -0500 Subject: [PATCH] refactor: update naming --- NoSoliciting/FilterUtil.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NoSoliciting/FilterUtil.cs b/NoSoliciting/FilterUtil.cs index 51f254c..8a876b2 100644 --- a/NoSoliciting/FilterUtil.cs +++ b/NoSoliciting/FilterUtil.cs @@ -48,7 +48,7 @@ namespace NoSoliciting { ['\ue0b0'] = "E", }; - private const char lowestReplacement = '\ue022'; + private const char LowestReplacement = '\ue022'; public static string Normalise(string input) { if (input == null) { @@ -58,7 +58,7 @@ namespace NoSoliciting { // replace ffxiv private use chars var builder = new StringBuilder(input.Length); foreach (char c in input) { - if (c < lowestReplacement) { + if (c < LowestReplacement) { goto AppendNormal; }