From 7bb31d09daff812547f2c576cdac10f06f30fad4 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Mon, 6 Oct 2025 05:17:30 +0300 Subject: [PATCH] Update style-guide.md --- contributing-guides/style-guide.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contributing-guides/style-guide.md b/contributing-guides/style-guide.md index c4993fcfbf91eb..9d9d77060cb6ff 100644 --- a/contributing-guides/style-guide.md +++ b/contributing-guides/style-guide.md @@ -449,11 +449,12 @@ Try to keep the following order: - Program name - Input redirection from a file - All subcommands -- Options/Flags - Positional arguments/Packages/Data/... +- Option flags +- Options with arguments - Output redirection to a file -For example: `systemctl < input_file.txt status --user pipewire > output_file.txt` +For example: `systemctl < input_file.txt status pipewire --user > output_file.txt` This is only a suggestion and should be disregarded when program functionality or readability dictates otherwise.