From a83809985d7671761e3ddd192be24bb0ce8fbb1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Gr=C3=A4sman?= Date: Thu, 15 Dec 2022 20:52:22 +0100 Subject: [PATCH] [fix_includes] Rephrase usage epilog --- fix_includes.py | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/fix_includes.py b/fix_includes.py index 295610a..131b1de 100755 --- a/fix_includes.py +++ b/fix_includes.py @@ -67,17 +67,15 @@ import sys from collections import OrderedDict _EPILOG = """\ -Reads the output from the include-what-you-use -script on stdin -- run with --v=1 (default) verbose or above -- and, -unless --sort_only or --dry_run is specified, -modifies the files mentioned in the output, removing their old -#include lines and replacing them with the lines given by the -include_what_you_use script. It also sorts the #include and -forward-declare lines. +Reads the output from include-what-you-use on stdin -- run with --v=1 (default) +verbosity level or above -- and, unless --sort_only or --dry_run is specified, +modifies the files mentioned in the output, removing their old #include lines +and replacing them with the lines given by include-what-you-use. It also sorts +the #include and forward-declare lines. -All files mentioned in the include-what-you-use script are modified, -unless filenames are specified on the commandline, in which case only -those files are modified. +All files mentioned in include-what-you-use output are modified, unless +filenames are specified on the commandline, in which case only those files are +modified. The exit code is non-zero if a critical error occurs, otherwise zero. """