diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-07-14 12:28:40 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2013-07-18 10:41:47 -0400 |
commit | f8931babe81c347c273c41a5c8bb214a8ca30f45 (patch) | |
tree | 00ffcb482f79f60a51148c9d82bac677489d980a | |
parent | 645a01946ed5abdf3e314f9b25c24db6132c1988 (diff) |
Tweak help output to stay within 80 columns
-rw-r--r-- | src/validator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validator.c b/src/validator.c index 20512a6..b04dd34 100644 --- a/src/validator.c +++ b/src/validator.c @@ -36,7 +36,7 @@ static char **filename = NULL; static GOptionEntry option_entries[] = { { "no-hints", 0, 0, G_OPTION_ARG_NONE, &no_hints, "Do not output hints to improve desktop file", NULL }, { "no-warn-deprecated", 0, 0, G_OPTION_ARG_NONE, &no_warn_deprecated, "Do not warn about usage of deprecated items", NULL }, - { "warn-kde", 0, 0, G_OPTION_ARG_NONE, &warn_kde, "Warn about usage of KDE extensions to the specification", NULL }, + { "warn-kde", 0, 0, G_OPTION_ARG_NONE, &warn_kde, "Warn if KDE extensions to the specification are used", NULL }, { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &filename, NULL, "<desktop-file>" }, { NULL } }; |