chore: fix typo in const name

Andrey Nering created

Change summary

internal/event/event.go | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

internal/event/event.go 🔗

@@ -16,7 +16,7 @@ const (
 	endpoint = "https://data.charm.land"
 	key      = "phc_4zt4VgDWLqbYnJYEwLRxFoaTL2noNrQij0C6E8k3I0V"
 
-	nonInteractiveEvenName = "NonInteractive"
+	nonInteractiveEventName = "NonInteractive"
 )
 
 var (
@@ -29,11 +29,11 @@ var (
 			Set("SHELL", filepath.Base(os.Getenv("SHELL"))).
 			Set("Version", version.Version).
 			Set("GoVersion", runtime.Version()).
-			Set(nonInteractiveEvenName, false)
+			Set(nonInteractiveEventName, false)
 )
 
 func SetNonInteractive(nonInteractive bool) {
-	baseProps = baseProps.Set(nonInteractiveEvenName, nonInteractive)
+	baseProps = baseProps.Set(nonInteractiveEventName, nonInteractive)
 }
 
 func Init() {