Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theverygaming authored Jul 17, 2021
1 parent 3d0357d commit 181a388
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Docs/ConcatenatingAudio.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var first = new AudioFileReader("first.mp3");
var second = new AudioFileReader("second.mp3");
var third = new AudioFileReader("third.mp3");

var playlist = new ConcatenatingSampleProvider(new[] { first, second, third });)
var playlist = new ConcatenatingSampleProvider(new[] { first, second, third });

// to play:
outputDevice.Init(playlist);
Expand Down Expand Up @@ -41,4 +41,4 @@ var second = new AudioFileReader("second.mp3");
var playlist = first.FollowedBy(TimeSpan.FromSeconds(1), second);
```

This makes use of an `OffsetSampleProvider` in conjunction with a `ConcatenatingSampleProvider`
This makes use of an `OffsetSampleProvider` in conjunction with a `ConcatenatingSampleProvider`

0 comments on commit 181a388

Please sign in to comment.