Skip to content

Commit 3b3a7bb

Browse files
authored
Update pwmaudioio module for PWMAudioOut
1 parent 3961014 commit 3b3a7bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared-bindings/audiopwmio/__init__.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
//| .. toctree::
4848
//| :maxdepth: 3
4949
//|
50-
//| AudioOut
50+
//| PWMAudioOut
5151
//|
5252
//| All classes change hardware state and should be deinitialized when they
5353
//| are no longer needed if the program continues after use. To do so, either
@@ -60,7 +60,7 @@
6060

6161
STATIC const mp_rom_map_elem_t audiopwmio_module_globals_table[] = {
6262
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_audiopwmio) },
63-
{ MP_ROM_QSTR(MP_QSTR_AudioOut), MP_ROM_PTR(&audiopwmio_pwmaudioout_type) },
63+
{ MP_ROM_QSTR(MP_QSTR_PWMAudioOut), MP_ROM_PTR(&audiopwmio_pwmaudioout_type) },
6464
};
6565

6666
STATIC MP_DEFINE_CONST_DICT(audiopwmio_module_globals, audiopwmio_module_globals_table);

0 commit comments

Comments
 (0)