From b816a689dbca948a075b9c4192e5a372f134f86e Mon Sep 17 00:00:00 2001 From: Luca Becker Date: Tue, 27 Feb 2024 09:03:50 +1100 Subject: [PATCH] docs(utils) remove typos in validateKubernetesNameConformance documention --- src/utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.ts b/src/utils.ts index ccaff4b..5b1f5bf 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -3,7 +3,7 @@ */ export class Utils { /** - * Check wether or not a string conforms to the lowercase RFC 1123. If not, Kubernetes will throws + * Check whether a string conforms to the lowercase RFC 1123. If not, Kubernetes will throw * an error saying that the name must conform with regex used for validation, which is: * \'[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*\')\n' * @@ -31,4 +31,4 @@ export class Utils { } } } -} \ No newline at end of file +}