Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
Fix output header error
Browse files Browse the repository at this point in the history
  • Loading branch information
harryzcy committed Mar 28, 2021
1 parent 7303da9 commit 8ebc37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/output/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
// Table prints application information in table format
func Table(apps []macapp.Application) {
table := tablewriter.NewWriter(os.Stdout)
table.SetHeader([]string{"Name", "Current ßArchitectures", "Arm Support"})
table.SetHeader([]string{"Name", "Current Architectures", "Arm Support"})

for _, app := range apps {
table.Append([]string{app.Name, app.Architectures.String(), app.ArmSupport.String()})
Expand Down

0 comments on commit 8ebc37f

Please sign in to comment.