Merge pull request #42 from chriskuehl/fix-typo

Fix typo in help message
This commit is contained in:
Chris Kuehl 2015-10-26 11:06:44 -07:00
commit 468e642d57
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ void print_help(char *argv[]) {
"\n"
"Optional arguments:\n"
" -c, --single-child Run in single-child mode.\n"
" In this mode, signals are only proxies to the\n"
" In this mode, signals are only proxied to the\n"
" direct child and not any of its descendants.\n"
" -v, --verbose Print debugging information to stderr.\n"
" -h, --help Print this help message and exit.\n"

View file

@ -38,7 +38,7 @@ def test_help_message(flag, both_debug_modes, both_setsid_modes, current_version
b'\n'
b'Optional arguments:\n'
b' -c, --single-child Run in single-child mode.\n'
b' In this mode, signals are only proxies to the\n'
b' In this mode, signals are only proxied to the\n'
b' direct child and not any of its descendants.\n'
b' -v, --verbose Print debugging information to stderr.\n'
b' -h, --help Print this help message and exit.\n'