diff --git a/README.md b/README.md index c717967..e230bc7 100644 --- a/README.md +++ b/README.md @@ -36,16 +36,16 @@ A simplified audio Recorder for HTML5, which uses the WebAudio API to export mic #### Constructor -- ** Basic / Async Construction ** - The recorder object is instatiated asynchronously as shown below. Calling the recorder function will ask the client for access to the device's microphone. Once the client agrees, the recorder object +** Basic / Async Construction ** The recorder object is instatiated asynchronously as shown below. Calling the recorder function will ask the client for access to the device's microphone. Once the client agrees, the recorder object - Recorder.new(function(recorder){ - // Create a recorder object (this will ask browser for microphone access) + Recorder.new(function(recorder){ + // Create a recorder object (this will ask browser for microphone access) - }); + }); -- ** From Media Source / Sync Construction ** - The recorder object can be instatiated synchronously if you want to specify the media source manually. +** From Media Source / Sync Construction ** The recorder object can be instatiated synchronously if you want to specify the media source manually. var recorder = Recorder.fromSource(source);