From 82f9c8823c35cea9773bc5896ff50d7862d53382 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Thu, 4 Jan 2024 06:28:30 -0800 Subject: [PATCH] Update MiscUtils.cpp --- library/MiscUtils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/MiscUtils.cpp b/library/MiscUtils.cpp index 279046e69..1865bf357 100644 --- a/library/MiscUtils.cpp +++ b/library/MiscUtils.cpp @@ -177,7 +177,7 @@ std::string to_search_normalized(const std::string &str) } std::string capitalize_string_words(const std::string& str) -{ // Cleaned up from g_src/basics.cpp, and returns new string +{ // Cleaned up from g_src/basics.cpp, and returns new string std::string out = str; bool starting = true; int32_t bracket_count = 0; @@ -294,7 +294,7 @@ bool word_wrap(std::vector *out, const std::string &str, size_t lin } std::string grab_token_string_pos(const std::string& source, int32_t pos, char compc) -{ // Cleaned up from g_src/basics.cpp, return string instead of bool +{ // Cleaned up from g_src/basics.cpp, return string instead of bool std::string out; // Go until you hit compc, ']', or the end