From 7a3789ae7f42268767c16e2e6ceabd2abfaf1e68 Mon Sep 17 00:00:00 2001 From: Anthony HAMON Date: Sun, 30 Jun 2024 23:22:23 +0200 Subject: [PATCH] Fix typo --- internal/workspace/workspace.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/workspace/workspace.go b/internal/workspace/workspace.go index ecf8897..d543fcf 100644 --- a/internal/workspace/workspace.go +++ b/internal/workspace/workspace.go @@ -396,7 +396,7 @@ func (s WorkspaceManager) getWorkspace(name string) (Workspace, error) { return Workspace{}, errors.New("the config file of the workspace is corrupted") } if app != s.shell { - return Workspace{}, fmt.Errorf(`the "%s" app si not supported for this workspace, it works with "%s"`, app, s.shell) + return Workspace{}, fmt.Errorf(`the "%s" app is not supported for this workspace, it works with "%s"`, app, s.shell) } content, err := os.ReadFile(s.resolveFunctionFile(name)) if os.IsNotExist(err) {