fixed typos

This commit is contained in:
Yotam Mann 2015-07-07 14:38:18 -04:00
parent 3ab23eabcc
commit d0d780fe45

View file

@ -11,7 +11,7 @@ Tone.js is a Web Audio framework for creating interactive music in the browser.
* [Jazz.Computer - Yotam Mann](http://jazz.computer/) * [Jazz.Computer - Yotam Mann](http://jazz.computer/)
* [motionEmotion - emotion & gesture-based arpeggiator and synthesizer](http://motionemotion.herokuapp.com/) * [motionEmotion - emotion & gesture-based arpeggiator and synthesizer](http://motionemotion.herokuapp.com/)
* [p5.sound - build with Tone.js](https://github.com/processing/p5.js-sound) * [p5.sound - built with Tone.js](https://github.com/processing/p5.js-sound)
* [Hypercube by @eddietree](http://eddietree.github.io/hypercube/) * [Hypercube by @eddietree](http://eddietree.github.io/hypercube/)
* [randomcommander.io by Jake Albaugh](http://randomcommander.io/) * [randomcommander.io by Jake Albaugh](http://randomcommander.io/)
* [Tone.js + NexusUI by taylorbf](http://taylorbf.github.io/Tone-Rack/) * [Tone.js + NexusUI by taylorbf](http://taylorbf.github.io/Tone-Rack/)
@ -45,7 +45,7 @@ It's always much safer to use a specific version rather than just "latest".
//create one of Tone's built-in synthesizers and connect it to the master output //create one of Tone's built-in synthesizers and connect it to the master output
var synth = new Tone.SimpleSynth().toMaster(); var synth = new Tone.SimpleSynth().toMaster();
//play a middle c for the duratino of an 8th note //play a middle c for the duration of an 8th note
synth.triggerAttackRelease("C4", "8n"); synth.triggerAttackRelease("C4", "8n");
``` ```