Skip to content

Commit 9a5bd97

Browse files
committed
Replaced at '...' with at [...] in error messages
1 parent 9039e46 commit 9a5bd97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config/ParseKeySequence.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ catch (const std::exception& ex) {
6060
trim_space(it, &end);
6161
if (it != end)
6262
throw ParseError(std::string(ex.what()) +
63-
R"( at ')" + std::string(begin, end) + R"(')");
63+
" at [" + std::string(begin, end) + "]");
6464
throw ParseError(ex.what());
6565
}
6666

0 commit comments

Comments
 (0)