chore: get rid of MutableSlice (#3952)

* chore: get rid of MutableSlice

Signed-off-by: Roman Gershman <roman@dragonflydb.io>

* chore: comments

---------

Signed-off-by: Roman Gershman <roman@dragonflydb.io>
This commit is contained in:
Roman Gershman 2024-10-23 21:50:39 +03:00 committed by GitHub
parent 0ebc1a11e1
commit 4aa0ca1ef7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 95 additions and 147 deletions

View file

@ -246,7 +246,7 @@ struct CmdArgListFormatter {
string UnknownCmd(string cmd, CmdArgList args) {
return absl::StrCat("unknown command '", cmd, "' with args beginning with: ",
StrJoin(args.begin(), args.end(), ", ", CmdArgListFormatter()));
absl::StrJoin(args.begin(), args.end(), ", ", CmdArgListFormatter()));
}
bool IsCloudPath(string_view path) {