processing-website icon indicating copy to clipboard operation
processing-website copied to clipboard

Example in sound library SawOsc --> mistake in comments

Open Rodak123 opened this issue 4 years ago • 2 comments

mistake in comments line 8

import processing.sound.*;
SawOsc saw;

void setup() {
  size(640, 360);
  background(255);
    
  **// Create square wave oscillator.**
  saw = new SawOsc(this);
  saw.play();
}

void draw() {
}

line 8: // Create square wave oscillator.

Proposed fix

// Create sawtooth wave oscillator.

Rodak123 avatar Mar 25 '21 10:03 Rodak123

ok got it may I work on this issue.

SanjaySinghRajpoot avatar Mar 31 '21 17:03 SanjaySinghRajpoot

I am interested in working on this issue. Can I be assigned? @SableRaf

Arya-Gupta avatar Jan 28 '23 09:01 Arya-Gupta