diff --git a/internal/super/output.go b/internal/super/output.go index 88d8a5f93..93c747443 100644 --- a/internal/super/output.go +++ b/internal/super/output.go @@ -112,7 +112,7 @@ func failureDeployment(err error, contractPathNames map[string]string) string { // handle cadence runtime errors var deployErr *flowkit.ProjectDeploymentError if errors.As(err, &deployErr) { - out.WriteString(output.ErrorEmoji() + " Error deploying your project. Runtime error encountered which means your code is incorrect, check details bellow. \n\n") + out.WriteString(output.ErrorEmoji() + " Error deploying your project. Runtime error encountered which means your code is incorrect, check details below. \n\n") for name, err := range deployErr.Contracts() { out.WriteString(output.Bold(fmt.Sprintf("%s Errors:\n", name))) diff --git a/internal/super/project.go b/internal/super/project.go index e307eb202..707ff7017 100644 --- a/internal/super/project.go +++ b/internal/super/project.go @@ -287,7 +287,7 @@ func (p *project) addContract( } existing, _ := p.state.Contracts().ByName(name) - if existing != nil { // make sure alises are persisted even if location changes + if existing != nil { // make sure aliases are persisted even if location changes contract.Aliases = existing.Aliases }