Skip to content

Commit f99ce55

Browse files
committed
Missing close-paren
1 parent 780e0cf commit f99ce55

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ status and the last 10K of output from the process.
4646

4747
```shell
4848
$ task-mon --help
49-
task-mon 0.3.1
49+
task-mon 0.3.2
5050
CLI to execute commands and log results to healthchecks.io
5151

5252
USAGE:
@@ -63,10 +63,10 @@ OPTIONS:
6363
-t, --time Ping when the program starts as well as completes
6464
--head POST the first 10k bytes instead of the last
6565
--ping-only Don't POST any output from the command
66-
--log Log the invocation without signalling success or failure; does
66+
--log Log the invocation without signaling success or failure; does
6767
not update the check's status
6868
--detailed Include execution details in the information POST-ed (by
69-
default just sends stdout/err
69+
default just sends stdout/err)
7070
--env Also POSTs the process environment; requires --detailed
7171
--verbose Write debugging details to stderr
7272
--user-agent <USER_AGENT> Customize the user-agent string sent to the Healthchecks.io

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ struct Cli {
155155
#[clap(long, conflicts_with_all=&["detailed", "env"])]
156156
ping_only: bool,
157157

158-
/// Log the invocation without signalling success or failure; does not update the check's status
158+
/// Log the invocation without signaling success or failure; does not update the check's status
159159
#[clap(long, conflicts_with="time")]
160160
log: bool,
161161

162-
/// Include execution details in the information POST-ed (by default just sends stdout/err
162+
/// Include execution details in the information POST-ed (by default just sends stdout/err)
163163
#[clap(long)]
164164
detailed: bool,
165165

0 commit comments

Comments
 (0)