From a5090c1ba1f01a0e3bc2e37dc0b4749fae0d84cf Mon Sep 17 00:00:00 2001 From: Bingran Hu Date: Thu, 25 Jul 2024 01:35:54 -0400 Subject: [PATCH] Fix comment --- components/core/src/clp/regex_utils/ErrorCode.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/core/src/clp/regex_utils/ErrorCode.cpp b/components/core/src/clp/regex_utils/ErrorCode.cpp index c160c0396..4e24e9a8b 100644 --- a/components/core/src/clp/regex_utils/ErrorCode.cpp +++ b/components/core/src/clp/regex_utils/ErrorCode.cpp @@ -76,7 +76,8 @@ auto ErrorCodeCategory::message(int ev) const -> string { return "Unmatched closing `]` at the end of the string."; case ErrorCode::UnsupportedCharsetPattern: - return "Currently only supports character set that contains a single character."; + return "Currently only supports character set that can be reduced to a single " + "character."; default: return "(unrecognized error)";