mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Cleanup: Don't use string literals when character literals are needed
This commit is contained in:
parent
35e518cbc2
commit
814d7d69fa
27 changed files with 122 additions and 122 deletions
|
@ -224,8 +224,8 @@ int CmdZshCommands::execute (std::string& output)
|
|||
// Emit the commands in order.
|
||||
std::stringstream out;
|
||||
for (auto& zc : commands)
|
||||
out << zc._command << ":"
|
||||
<< Command::categoryNames.at (zc._category) << ":"
|
||||
out << zc._command << ':'
|
||||
<< Command::categoryNames.at (zc._category) << ':'
|
||||
<< zc._description << '\n';
|
||||
|
||||
output = out.str ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue