summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shared-bindings/pulseio/__init__.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/pulseio/__init__.c b/shared-bindings/pulseio/__init__.c
index 624cd2dfe..bfe9635f0 100644
--- a/shared-bindings/pulseio/__init__.c
+++ b/shared-bindings/pulseio/__init__.c
@@ -41,10 +41,10 @@
//| Individual pulses are commonly used in infrared remotes and in DHT
//| temperature sensors.
//|
-
+//|
//| .. warning:: PWMOut is moving to `pwmio` and will be removed from `pulseio`
//| in CircuitPython 7.
-
+//|
//| All classes change hardware state and should be deinitialized when they
//| are no longer needed if the program continues after use. To do so, either
//| call :py:meth:`!deinit` or use a context manager. See