Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
antham committed Jun 30, 2024
1 parent 6669e61 commit 7a3789a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/workspace/workspace.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 7a3789a

Please sign in to comment.