From f23537ba7d8e9d157056ffcea889204866bfe475 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 3 Jan 2026 13:45:44 +0200 Subject: [PATCH] Fix typo --- src/bpm/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bpm/main.go b/src/bpm/main.go index e80468c..24244fd 100644 --- a/src/bpm/main.go +++ b/src/bpm/main.go @@ -627,7 +627,7 @@ func installPackages() { // Show optional dependencies if !installOptional && len(optionalDepends) != 0 { // List optional dependencies - fmt.Println("The following opitonal dependenices have been discovered:") + fmt.Println("The following optional dependenices have been discovered:") for dependant, depends := range optionalDepends { fmt.Printf("%s: \n", dependant) for _, depend := range depends { @@ -1019,7 +1019,7 @@ func updatePackages() { // Show optional dependencies if !installOptional && len(optionalDepends) != 0 { // List optional dependencies - fmt.Println("The following opitonal dependenices have been discovered:") + fmt.Println("The following optional dependenices have been discovered:") for dependant, depends := range optionalDepends { fmt.Printf("%s: \n", dependant) for _, depend := range depends {