From c7f39e986f8870adb0af12c6ef489a0de3580cf4 Mon Sep 17 00:00:00 2001 From: Sebastian Nilsson Date: Sat, 5 Oct 2024 20:58:37 +0200 Subject: [PATCH] README: Clarified terminology --- README.md | 4 ++-- src/DotnetPing/AppSettings.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0f03157..5077279 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ``` diff --git a/src/DotnetPing/AppSettings.cs b/src/DotnetPing/AppSettings.cs index d743135..1f9bb77 100644 --- a/src/DotnetPing/AppSettings.cs +++ b/src/DotnetPing/AppSettings.cs @@ -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.";