summaryrefslogtreecommitdiff
path: root/Userland/Utilities/checksum.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-16 12:00:33 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-16 14:52:04 +0100
commitc71807a3fc592ab1d2d59c157e122a1b4030cd46 (patch)
tree3cacfa51d521be5f1fbe17f880391dd7ec42b0fe /Userland/Utilities/checksum.cpp
parentc90b7881a7313a9b36c7069769b5489c3be4f014 (diff)
downloadserenity-c71807a3fc592ab1d2d59c157e122a1b4030cd46.zip
Everywhere: Convert a handful of String::format() => formatted()
Diffstat (limited to 'Userland/Utilities/checksum.cpp')
-rw-r--r--Userland/Utilities/checksum.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/checksum.cpp b/Userland/Utilities/checksum.cpp
index d2c6e59e5b..21c0eb43ee 100644
--- a/Userland/Utilities/checksum.cpp
+++ b/Userland/Utilities/checksum.cpp
@@ -55,7 +55,7 @@ int main(int argc, char** argv)
}
auto hash_name = program_name.substring_view(0, program_name.length() - 3).to_string().to_uppercase();
- auto paths_help_string = String::format("File(s) to print %s checksum of", hash_name.characters());
+ auto paths_help_string = String::formatted("File(s) to print {} checksum of", hash_name);
Vector<const char*> paths;