synthio: fix docstring

This commit is contained in:
Jeff Epler 2023-05-21 13:13:00 -05:00
parent 823a02c0b7
commit c5615995d9
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ MP_PROPERTY_GETSET(synthio_lfo_phase_offset_obj,
(mp_obj_t)&synthio_lfo_set_phase_offset_obj); (mp_obj_t)&synthio_lfo_set_phase_offset_obj);
//| scale: BlockInput //| 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) { STATIC mp_obj_t synthio_lfo_get_scale(mp_obj_t self_in) {
synthio_lfo_obj_t *self = MP_OBJ_TO_PTR(self_in); synthio_lfo_obj_t *self = MP_OBJ_TO_PTR(self_in);
return common_hal_synthio_lfo_get_scale_obj(self); return common_hal_synthio_lfo_get_scale_obj(self);