From 64b93c9116b6a7f82419f1c4fff98fa68b8c0aca Mon Sep 17 00:00:00 2001
From: Ben Parees <bparees@users.noreply.github.com>
Date: Thu, 15 Jun 2023 14:13:15 -0400
Subject: [PATCH] fix: 'intergration' typos (#508)

Signed-off-by: bparees <bparees@redhat.com>
---
 cmd/integration/integration.go | 4 ++--
 pkg/ai/prompts.go              | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmd/integration/integration.go b/cmd/integration/integration.go
index 5c5ffe2f74..30b425c936 100644
--- a/cmd/integration/integration.go
+++ b/cmd/integration/integration.go
@@ -25,8 +25,8 @@ var (
 var IntegrationCmd = &cobra.Command{
 	Use:     "integration",
 	Aliases: []string{"integrations"},
-	Short:   "Intergrate another tool into K8sGPT",
-	Long: `Intergrate another tool into K8sGPT. For example:
+	Short:   "Integrate another tool into K8sGPT",
+	Long: `Integrate another tool into K8sGPT. For example:
 	
 	k8sgpt integration activate trivy
 	
diff --git a/pkg/ai/prompts.go b/pkg/ai/prompts.go
index 626eab3343..01e8c4ddb8 100644
--- a/pkg/ai/prompts.go
+++ b/pkg/ai/prompts.go
@@ -11,5 +11,5 @@ const (
 
 var PromptMap = map[string]string{
 	"default":             default_prompt,
-	"VulnerabilityReport": trivy_prompt, // for Trivy intergration, the key should match `Result.Kind` in pkg/common/types.go
+	"VulnerabilityReport": trivy_prompt, // for Trivy integration, the key should match `Result.Kind` in pkg/common/types.go
 }