Skip to content

Commit 8d5219f

Browse files
committed
Update echo mix and decay docstrings.
1 parent 7ffb2d3 commit 8d5219f

File tree

1 file changed

+2
-2
lines changed
  • shared-bindings/audiodelays

1 file changed

+2
-2
lines changed

shared-bindings/audiodelays/Echo.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ MP_PROPERTY_GETSET(audiodelays_echo_delay_ms_obj,
162162
(mp_obj_t)&audiodelays_echo_set_delay_ms_obj);
163163

164164
//| decay: synthio.BlockInput
165-
//| """The rate the echo decays between 0 and 1 where 1 is forever and 0 is no echo."""
165+
//| """The rate the echo fades between 0 and 1 where 0 is instant and 1 is never."""
166166
static mp_obj_t audiodelays_echo_obj_get_decay(mp_obj_t self_in) {
167167
return common_hal_audiodelays_echo_get_decay(self_in);
168168
}
@@ -180,7 +180,7 @@ MP_PROPERTY_GETSET(audiodelays_echo_decay_obj,
180180
(mp_obj_t)&audiodelays_echo_set_decay_obj);
181181

182182
//| mix: synthio.BlockInput
183-
//| """The rate the echo mix between 0 and 1 where 0 is only sample and 1 is all effect."""
183+
//| """The rate the echo mix between 0 and 1 where 0 is only sample, 0.5 is an equal mix of the sample and the effect and 1 is all effect."""
184184
static mp_obj_t audiodelays_echo_obj_get_mix(mp_obj_t self_in) {
185185
return common_hal_audiodelays_echo_get_mix(self_in);
186186
}

0 commit comments

Comments
 (0)