Skip to content

Commit

Permalink
README: Clarified terminology
Browse files Browse the repository at this point in the history
  • Loading branch information
sebnilsson committed Oct 5, 2024
1 parent 4e8c31a commit c7f39e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.NET Tool for pinging URLs.

The tool supports using backoff between requests.
The tool supports using waiting between requests.
Can be configured using a JSON file which specifies URLs and their expected behaviors.

## Installation
Expand Down Expand Up @@ -39,7 +39,7 @@ OPTIONS:
-e, --expect Sets the expected status code of requests. Default: 200
-X, --request Sets the request method. Default: GET
-m, --minimal Use minimal console messaging
-s, --sleep Sets the sleep time between requests in milliseconds. Default: 500ms
-s, --sleep Sets the sleep wait time between requests in milliseconds. Default: 500ms
-t, --timeout Sets the timeout for requests in milliseconds. Default: 5000ms. If two values are provided, a
random number between the two numbers will be generated for each request
```
Expand Down
2 changes: 1 addition & 1 deletion src/DotnetPing/AppSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ internal static class AppSettingsConfig

public const string MinimalDescription = "Use minimal console messaging.";

public const string SleepDescription = "Sets the sleep time between requests in milliseconds. Default: 500ms.";
public const string SleepDescription = "Sets the sleep wait time between requests in milliseconds. Default: 500ms.";

public const string TimeoutDescription = "Sets the timeout for requests in milliseconds. Default: 5000ms. If two values are provided, a random number between the two numbers will be generated for each request.";

Expand Down

0 comments on commit c7f39e9

Please sign in to comment.