diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2017-07-29 16:25:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-29 16:25:36 -0700 |
commit | cf588a6ff249a37d2a1e3ca4f923794d577a099e (patch) | |
tree | b629393fe7a16da6a35749dcfa69e09f8e8fc36e | |
parent | Merge pull request #486 from jonls/appveyor-static (diff) | |
parent | Limit lines to 80 chars (diff) | |
download | redshift-ng-cf588a6ff249a37d2a1e3ca4f923794d577a099e.tar.gz redshift-ng-cf588a6ff249a37d2a1e3ca4f923794d577a099e.tar.bz2 redshift-ng-cf588a6ff249a37d2a1e3ca4f923794d577a099e.tar.xz |
Merge pull request #481 from faheel/format-help-text
Formatted help text paragraph to 80 chars max
-rw-r--r-- | src/redshift.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/redshift.c b/src/redshift.c index 6eefd7d..41629cc 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -461,11 +461,10 @@ print_help(const char *program_name) fputs("\n", stdout); /* TRANSLATORS: help output 5 */ - printf(_("The neutral temperature is %uK. Using this value will not\n" - "change the color temperature of the display. Setting the\n" - "color temperature to a value higher than this results in\n" - "more blue light, and setting a lower value will result in\n" - "more red light.\n"), + printf(_("The neutral temperature is %uK. Using this value will not change " + "the color\ntemperature of the display. Setting the color temperature " + "to a value higher\nthan this results in more blue light, and setting " + "a lower value will result in\nmore red light.\n"), NEUTRAL_TEMP); fputs("\n", stdout); |