From 82552c088ad7e9f93e44ae8f58f9bded43cf66ce Mon Sep 17 00:00:00 2001
From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
Date: Fri, 2 Sep 2022 14:47:07 +0200
Subject: [PATCH] fix(config): improve text in description field (#17585)

---
 lib/config/options/index.ts | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/config/options/index.ts b/lib/config/options/index.ts
index 4c007eedeb..a486d67625 100644
--- a/lib/config/options/index.ts
+++ b/lib/config/options/index.ts
@@ -2096,7 +2096,7 @@ const options: RenovateOptions[] = [
   {
     name: 'authType',
     description:
-      'Authentication type for http header. e.g. `"Bearer"` or `"Basic"`. Use `"Token-Only"` to use only the token without an authorization type.',
+      'Authentication type for HTTP header. e.g. `"Bearer"` or `"Basic"`. Use `"Token-Only"` to use only the token without an authorization type.',
     type: 'string',
     stage: 'repository',
     parent: 'hostRules',
@@ -2106,7 +2106,7 @@ const options: RenovateOptions[] = [
   },
   {
     name: 'dnsCache',
-    description: 'Enable got dns cache',
+    description: 'Enable got DNS cache.',
     type: 'boolean',
     stage: 'repository',
     parent: 'hostRules',
@@ -2117,7 +2117,7 @@ const options: RenovateOptions[] = [
   },
   {
     name: 'keepalive',
-    description: 'Enable http keepalives for hosts',
+    description: 'Enable HTTP keepalives for hosts.',
     type: 'boolean',
     stage: 'repository',
     parent: 'hostRules',
-- 
GitLab