From edb9b3b2c3f3c447cbfbc95e02ee053bcb694872 Mon Sep 17 00:00:00 2001 From: Mustafa Date: Fri, 13 Jun 2014 16:46:06 -0700 Subject: [PATCH] fixed typos in tutorial --- oregano/Tutorial.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/oregano/Tutorial.md b/oregano/Tutorial.md index e1b521c..13e4d7f 100644 --- a/oregano/Tutorial.md +++ b/oregano/Tutorial.md @@ -73,8 +73,8 @@ Or you can create a note object then play it. ### 2. Creating an instrument A custom instrument is composed of three parts: -- it's name. This is a string and is used when playing notes -- Instrjument arguments and default values. You could change these paramers when a note is playing, in real time. +- it name. This is a string and is used when playing notes +- Instrument arguments and default values. You could change these parameters when a note is playing, in real time. - the signal. This can use SuperCollider ugens. (TODO link) - some are: @@ -87,7 +87,7 @@ Or you can create a note object then play it. ```scheme ;; create a custom instrument -;; can use oscilators and envelopes +;; can use oscillators and envelopes ;; "freq" is the frequency parameter (make-instrument "my-inst" ([freq 500] [mod 20]) (mul (sin-osc ar mod 0) @@ -212,7 +212,7 @@ Didn't implement envelopes yet. These can be used in defining instruments. -- sin, saw, tringle, square +- sin, saw, triangle, square -