summaryrefslogtreecommitdiff
path: root/shared-bindings/pulseio/PulseOut.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/pulseio/PulseOut.c')
-rw-r--r--shared-bindings/pulseio/PulseOut.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/pulseio/PulseOut.c b/shared-bindings/pulseio/PulseOut.c
index 20e04e8fb..7b05e704c 100644
--- a/shared-bindings/pulseio/PulseOut.c
+++ b/shared-bindings/pulseio/PulseOut.c
@@ -57,7 +57,7 @@
//| with pulseio.PWMOut(board.D13, duty_cycle=2 ** 15) as pwm:
//| pulse = pulseio.PulseOut(pwm)
//| # on off on off on
-//| pulses = array.array('h', [65000, 1000, 65000, 65000, 1000])
+//| pulses = array.array('H', [65000, 1000, 65000, 65000, 1000])
//| pulse.send(pulses)
//|
//| # Modify the array of pulses.