From 152ec6381ee50cbeb98ef8a9534481cc3f5ec7ae Mon Sep 17 00:00:00 2001 From: Nick Hansen Date: Mon, 7 Sep 2020 07:02:57 +0000 Subject: [PATCH] Fixing typo (#503) --- SpotifyAPI.Web.Examples/Example.CLI.PersistentConfig/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}");