Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c20e862

Browse files
committedMay 24, 2023
synthio: note frequency can only be a float, for now
1 parent 1847c2b commit c20e862

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎shared-bindings/synthio/Note.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ STATIC mp_obj_t synthio_note_make_new(const mp_obj_type_t *type_in, size_t n_arg
7979
return result;
8080
};
8181

82-
//| frequency: BlockInput
82+
//| frequency: float
8383
//| """The base frequency of the note, in Hz."""
8484
STATIC mp_obj_t synthio_note_get_frequency(mp_obj_t self_in) {
8585
synthio_note_obj_t *self = MP_OBJ_TO_PTR(self_in);

0 commit comments

Comments
 (0)
Please sign in to comment.