From 4f4f3aed25d5d882d46368aa67ec939102c60730 Mon Sep 17 00:00:00 2001 From: Weird Constructor Date: Sat, 24 Jul 2021 20:30:23 +0200 Subject: [PATCH] Shortened too long descriptions. --- src/dsp/node_allp.rs | 2 +- src/dsp/node_noise.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dsp/node_allp.rs b/src/dsp/node_allp.rs index 5cd7621..c11e14b 100644 --- a/src/dsp/node_allp.rs +++ b/src/dsp/node_allp.rs @@ -29,7 +29,7 @@ impl AllP { "AllP sig\nThe output of allpass filter.\nRange: (-1..1)"; pub const DESC : &'static str = -r#"Simple Single Allpass Filter +r#"Single Allpass Filter This is an allpass filter that can be used to build reverbs or anything you might find it useful for. diff --git a/src/dsp/node_noise.rs b/src/dsp/node_noise.rs index f7abc29..47a1c96 100644 --- a/src/dsp/node_noise.rs +++ b/src/dsp/node_noise.rs @@ -51,7 +51,7 @@ impl Noise { "Noise sig\nThe noise output.\nRange: (-1..1)"; pub const DESC : &'static str = -r#"A Simple Noise Oscillator +r#"Noise Oscillator This is a very simple noise oscillator, which can be used for any kind of audio rate noise. And as a source for sample & hold like nodes to generate low frequency modulation.