We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3961014 commit 3b3a7bbCopy full SHA for 3b3a7bb
shared-bindings/audiopwmio/__init__.c
@@ -47,7 +47,7 @@
47
//| .. toctree::
48
//| :maxdepth: 3
49
//|
50
-//| AudioOut
+//| PWMAudioOut
51
52
//| All classes change hardware state and should be deinitialized when they
53
//| are no longer needed if the program continues after use. To do so, either
@@ -60,7 +60,7 @@
60
61
STATIC const mp_rom_map_elem_t audiopwmio_module_globals_table[] = {
62
{ 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) },
+ { MP_ROM_QSTR(MP_QSTR_PWMAudioOut), MP_ROM_PTR(&audiopwmio_pwmaudioout_type) },
64
};
65
66
STATIC MP_DEFINE_CONST_DICT(audiopwmio_module_globals, audiopwmio_module_globals_table);
0 commit comments