From c5615995d93cf9ab8613dd975920cb158645a138 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sun, 21 May 2023 13:13:00 -0500 Subject: [PATCH] synthio: fix docstring --- shared-bindings/synthio/LFO.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-bindings/synthio/LFO.c b/shared-bindings/synthio/LFO.c index 79e05d83ce..ac817b93b6 100644 --- a/shared-bindings/synthio/LFO.c +++ b/shared-bindings/synthio/LFO.c @@ -164,7 +164,7 @@ MP_PROPERTY_GETSET(synthio_lfo_phase_offset_obj, (mp_obj_t)&synthio_lfo_set_phase_offset_obj); //| scale: BlockInput -//| """An additive value applied to the LFO's output""" +//| """An multiplier value applied to the LFO's output""" STATIC mp_obj_t synthio_lfo_get_scale(mp_obj_t self_in) { synthio_lfo_obj_t *self = MP_OBJ_TO_PTR(self_in); return common_hal_synthio_lfo_get_scale_obj(self);