Skip to content

Commit

Permalink
updating documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sb2702 committed Jun 18, 2015
1 parent 660287a commit 7a9f4e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ A simplified audio Recorder for HTML5, which uses the WebAudio API to export mic
**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){
Recorder.new(function(recorder [,config]){
// Create a recorder object (this will ask browser for microphone access)

});
Expand All @@ -48,7 +48,7 @@ A simplified audio Recorder for HTML5, which uses the WebAudio API to export mic
**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);
var recorder = Recorder.fromSource(source [,config]);

Example:

Expand Down

0 comments on commit 7a9f4e5

Please sign in to comment.