1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

AK: Eradicate the uses of out().

This commit is contained in:
asynts 2020-10-23 18:37:35 +02:00 committed by Andreas Kling
parent 61e73b1a7b
commit 88bca152c9
7 changed files with 475 additions and 259 deletions

View file

@ -34,6 +34,6 @@ int main(int argc, char** argv)
args_parser.add_positional_argument(path, "Path", "path");
args_parser.parse(argc, argv);
out() << LexicalPath(path).dirname().characters();
outln("{}", LexicalPath(path).dirname());
return 0;
}