From d2ad2ec078a6ed12ec3f44b263ec618f13c5f676 Mon Sep 17 00:00:00 2001 From: hg <4683435+hgtw@users.noreply.github.com> Date: Sat, 17 Oct 2020 22:41:54 -0400 Subject: [PATCH] Add comment to FormatName --- common/string_util.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/string_util.cpp b/common/string_util.cpp index 9190207ee..4b3b59eb1 100644 --- a/common/string_util.cpp +++ b/common/string_util.cpp @@ -593,6 +593,7 @@ std::string numberToWords(unsigned long long int n) return res; } +// first letter capitalized and rest made lower case std::string FormatName(const std::string& char_name) { std::string formatted(char_name);