Skip to content

Commit

Permalink
Last minute string changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuathompson committed Dec 21, 2017
1 parent 5bf208b commit d7e8ac7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func authenticate(cmd *cobra.Command, args []string) {
id, secret := getClientCredentials()
code := getCode(id)
api.AuthorizeWithCode(id, secret, code)
fmt.Println("\nAuthentication successful!")
fmt.Println("\nAuthentication successful, setup complete, you should be able to run other commands now!")
}

func init() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/play.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func playUri(cmd *cobra.Command, args []string) {
err := api.StartPlayback(&playerOptions)

if err != nil {
fmt.Printf("Couldn't start playback. Is Spotify active on a device? Have you authenticated with the 'auth' command?\n")
fmt.Printf("Couldn't start playback. Is Spotify already playing? Is Spotify active on a device? Have you authenticated with the 'auth' command?\n")
} else {
fmt.Printf("Resuming playback\n")
}
Expand Down
4 changes: 2 additions & 2 deletions cmd/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ func init() {

var searchCmd = &cobra.Command{
Use: "search",
Short: "Search via interactive TUI",
Long: `Search via interactive TUI`,
Short: "Search for specified artist, album, playlist, or track and select via interactive TUI",
Long: `Search for specified artist, album, playlist, or track and select via interactive TUI`,
}

var searchArtistsCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion ui/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func printNowPlaying() {
ps, err := api.GetPlayerState(&opts)

if err != nil {
fmt.Printf("Playing selected song\n")
fmt.Printf("Playing selection\n")
} else {
var artistNames []string
for _, artist := range ps.Item.Artists {
Expand Down

0 comments on commit d7e8ac7

Please sign in to comment.