Skip to content

Commit 2392f8f

Browse files
authored
Changed "contex" typo to "context" (#450)
1 parent f0de943 commit 2392f8f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

SpotifyAPI.Docs/docs/web/player.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ devices.Devices.ForEach(device => Console.WriteLine(device.Name));
3030

3131
```csharp
3232
PlaybackContext context = _spotify.GetPlayback();
33-
if(contex.Item != null)
33+
if(context.Item != null)
3434
Console.WriteLine(context.Item.Name)); //Print the current song
3535
```
3636

@@ -51,7 +51,7 @@ This is a simpler (less data) version of `GetPlayback`
5151

5252
```csharp
5353
PlaybackContext context = _spotify.GetPlayingTrack();
54-
if(contex.Item != null)
54+
if(context.Item != null)
5555
Console.WriteLine(context.Item.Name)); //Print the current song
5656
```
5757

0 commit comments

Comments
 (0)