Skip to content

Commit d3eda0a

Browse files
committed
synthio: fix a typing error
1 parent 53e13f1 commit d3eda0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

shared-bindings/synthio/__init__.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -295,16 +295,16 @@ MAKE_ENUM_VALUE(synthio_bend_mode_type, bend_mode, SWEEP_IN, SYNTHIO_BEND_MODE_S
295295
//| class BendMode:
296296
//| """Controls the way the ``Note.pitch_bend_depth`` and ``Note.pitch_bend_rate`` properties are interpreted."""
297297
//|
298-
//| STATIC: object
298+
//| STATIC: "BendMode"
299299
//| """The Note's pitch is modified by its ``pitch_bend_depth``. ``pitch_bend_rate`` is ignored."""
300300
//|
301-
//| VIBRATO: object
301+
//| VIBRATO: "BendMode"
302302
//| """The Note's pitch varies by ``±pitch_bend_depth`` at a rate of ``pitch_bend_rate`` Hz."""
303303
//|
304-
//| SWEEP: object
304+
//| SWEEP: "BendMode"
305305
//| """The Note's pitch starts at ``Note.frequency`` then sweeps up or down by ``pitch_bend_depth`` over ``1/pitch_bend_rate`` seconds."""
306306
//|
307-
//| SWEEP_IN: object
307+
//| SWEEP_IN: "BendMode"
308308
//| """The Note's pitch sweep is the reverse of ``SWEEP`` mode, starting at the bent pitch and arriving at the tuned pitch."""
309309
//|
310310
MAKE_ENUM_MAP(synthio_bend_mode) {

0 commit comments

Comments
 (0)