From ff041caa52fcf7a15f0b18f5f1edf1c972f86e50 Mon Sep 17 00:00:00 2001 From: arturo182 Date: Tue, 6 Feb 2018 22:03:17 +0100 Subject: shared-bindings: Fix incorrect code comments Most likely caused by copy-paste. --- shared-bindings/audioio/AudioOut.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shared-bindings/audioio') diff --git a/shared-bindings/audioio/AudioOut.c b/shared-bindings/audioio/AudioOut.c index 4e76565e9..01815ebb7 100644 --- a/shared-bindings/audioio/AudioOut.c +++ b/shared-bindings/audioio/AudioOut.c @@ -101,7 +101,7 @@ STATIC mp_obj_t audioio_audioout_make_new(const mp_obj_type_t *type, size_t n_ar // We explicitly don't check whether the pin is free because multiple // AudioOuts may share it. - // create PWM object from the given pin + // create AudioOut object from the given pin audioio_audioout_obj_t *self = m_new_obj(audioio_audioout_obj_t); self->base.type = &audioio_audioout_type; mp_buffer_info_t bufinfo; @@ -124,7 +124,7 @@ STATIC mp_obj_t audioio_audioout_make_new(const mp_obj_type_t *type, size_t n_ar //| .. method:: deinit() //| -//| Deinitialises the PWMOut and releases any hardware resources for reuse. +//| Deinitialises the AudioOut and releases any hardware resources for reuse. //| STATIC mp_obj_t audioio_audioout_deinit(mp_obj_t self_in) { audioio_audioout_obj_t *self = MP_OBJ_TO_PTR(self_in); -- cgit v1.2.3