8000 Update end() docstring · cezer-io/circuitpython@f840639 · GitHub
[go: up one dir, main page]

Skip to content

Commit f840639

Browse files
committed
Update end() docstring
1 parent fa565e5 commit f840639

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shared-bindings/audiomixer/MixerVoice.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ static mp_obj_t audiomixer_mixervoice_obj_stop(size_t n_args, const mp_obj_t *po
8282
MP_DEFINE_CONST_FUN_OBJ_KW(audiomixer_mixervoice_stop_obj, 1, audiomixer_mixervoice_obj_stop);
8383

8484
//| def end(self) -> None:
85-
//| """ Sets looping to False if sample is playing, allowing current looped
86-
//| sample to finish before looping again """
87-
//| ...
85+
//| """ Sets looping to False if sample is playing. This allows the looped
86+
//| sample to complete its current playback and end further looping """
87+
//| ...
8888
//|
8989
static mp_obj_t audiomixer_mixervoice_obj_end(mp_obj_t self_in) {
9090
audiomixer_mixervoice_obj_t *self = MP_OBJ_TO_PTR(self_in);

0 commit comments

Comments
 (0)
0