Skip to content

Commit db23195

Browse files
Remove duplicate word (#3834)
* Remove duplicate word * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 4a464c1 commit db23195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/CmdContext.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ void CmdContext::defineContext(const std::vector<std::string>& words, std::strin
218218
if (!valid_write_context) {
219219
std::stringstream warning;
220220
warning
221-
<< format("The filter '{1}' is not a valid modification string, because it contains {2}.",
222-
value, reason)
221+
<< format("The filter '{1}' is not a valid modification string, because it {2}.", value,
222+
reason)
223223
<< "\nAs such, value for the write context cannot be set (context will not apply on task "
224224
"add / task log).\n\n"
225225
<< format(

0 commit comments

Comments
 (0)