diff --git a/SpotifyAPI.Web.Examples/Example.CLI.PersistentConfig/Program.cs b/SpotifyAPI.Web.Examples/Example.CLI.PersistentConfig/Program.cs index 6ddd5813..df1b3fd8 100644 --- a/SpotifyAPI.Web.Examples/Example.CLI.PersistentConfig/Program.cs +++ b/SpotifyAPI.Web.Examples/Example.CLI.PersistentConfig/Program.cs @@ -60,7 +60,7 @@ namespace Example.CLI.PersistentConfig var spotify = new SpotifyClient(config); var me = await spotify.UserProfile.Current(); - Console.WriteLine($"Welcome {me.DisplayName} ({me.Id}), your authenticated!"); + Console.WriteLine($"Welcome {me.DisplayName} ({me.Id}), you're authenticated!"); var playlists = await spotify.PaginateAll(await spotify.Playlists.CurrentUsers().ConfigureAwait(false)); Console.WriteLine($"Total Playlists in your Account: {playlists.Count}");