diff --git a/README.md b/README.md index 44a44c5..6d07c6b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ + + # node-vst-host https://github.com/ZECTBynmo/node-vst-host @@ -17,7 +19,7 @@ var VSTHost = require("./node-vst-host").host; var host = new VSTHost(); -// Print our a list of the available plugins +// Print out a list of the available plugins host.listPlugins( function(names) { console.log( "Available Plugins"); console.log( names ); @@ -25,4 +27,4 @@ host.listPlugins( function(names) { // Process an audio file with a VST plugin host.processAudio( "C:/inputFile.wav", "C:/outputFile.wav", ["plugin1", "plugin2"] ); -``` \ No newline at end of file +```