From 5ab8f1f7cc3cb9851db4be80d74da62e2ca4dec3 Mon Sep 17 00:00:00 2001 From: Lyle Hanson Date: Wed, 16 Oct 2019 15:51:11 -0500 Subject: [PATCH] Typo fix Change "Alredy" to "Already" --- commands/lib/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/lib/install.go b/commands/lib/install.go index 0919a6ffb7e..720b95de85d 100644 --- a/commands/lib/install.go +++ b/commands/lib/install.go @@ -59,7 +59,7 @@ func installLibrary(lm *librariesmanager.LibrariesManager, libRelease *libraries logrus.WithField("library", libRelease).Info("Installing library") libPath, libReplaced, err := lm.InstallPrerequisiteCheck(libRelease) if err == librariesmanager.ErrAlreadyInstalled { - taskCB(&rpc.TaskProgress{Message: "Alredy installed " + libRelease.String(), Completed: true}) + taskCB(&rpc.TaskProgress{Message: "Already installed " + libRelease.String(), Completed: true}) return nil }