From eb2f362d51d626a0564c328219f3cae99d3fa7b0 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sat, 9 Mar 2019 00:50:34 +0000 Subject: [PATCH] Fixed some typos on readme.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index efe340a..9147b38 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,14 @@ # NetCoreAudio + The library allows playback of audio files on .NET Core on any operating system with minimal dependencies -# Usage +## Usage The library exposes Player class, which detects the OS the library is running on and abstracts away any OS-specific audio playback implementations. ## Properties -### bool Plaing +### bool Playing Indicates that the audio is currently playing. @@ -23,7 +24,7 @@ Will stop any current playback and will start playing the specified audio file. ### Pause() -Pauses any ongong playback. Sets Paused flag to true. Doesn't modify Playing flag. +Pauses any ongoing playback. Sets Paused flag to true. Doesn't modify Playing flag. ### Resume() @@ -40,4 +41,3 @@ Stopped playback cannot be resumed. If the same file needs to be played again, i ### EventHandler PlaybackFinished Internally, sets Playing flag to false. Additional handlers can be attached to it to handle any custom logic. -