Everywhere: Behaviour => Behavior

This commit is contained in:
Andreas Kling 2021-09-07 12:56:50 +02:00
commit 6ad427993a
Notes: sideshowbarker 2024-07-18 04:32:02 +09:00
48 changed files with 120 additions and 120 deletions

View file

@ -110,7 +110,7 @@ int main(int argc, char** argv)
args_parser.add_positional_argument(files, "File(s) to process", "file", Core::ArgsParser::Required::No);
args_parser.parse(argc, argv);
// mock grep behaviour: if -e is omitted, use first positional argument as pattern
// mock grep behavior: if -e is omitted, use first positional argument as pattern
if (pattern == nullptr && files.size())
pattern = files.take_first();