Skip to content

Commit 90c524c

Browse files
committed
docs: Remove spaces on lines that are empty.
1 parent 40cc7ec commit 90c524c

24 files changed

Lines changed: 53 additions & 53 deletions

docs/esp32/quickref.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,10 +359,10 @@ Notes:
359359
To further reduce power consumption it is possible to disable the internal pullups::
360360

361361
p1 = Pin(4, Pin.IN, Pin.PULL_HOLD)
362-
362+
363363
After leaving deepsleep it may be necessary to un-hold the pin explicitly (e.g. if
364364
it is an output pin) via::
365-
365+
366366
p1 = Pin(4, Pin.OUT, None)
367367

368368
OneWire driver

docs/esp8266/tutorial/network_tcp.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Now that we are connected we can download and display the data::
4444
... data = s.recv(500)
4545
... print(str(data, 'utf8'), end='')
4646
...
47-
47+
4848
When this loop executes it should start showing the animation (use ctrl-C to
4949
interrupt it).
5050

docs/library/lcd160cr.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ Advanced commands
340340
.. method:: LCD160CR.set_scroll_win_param(win, param, value)
341341

342342
Set a single parameter of a scrolling window region:
343-
343+
344344
- *win* is the window id, 0..8.
345345
- *param* is the parameter number to configure, 0..7, and corresponds
346346
to the parameters in the `set_scroll_win` method.

docs/library/machine.RTC.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Methods
2727
.. method:: RTC.init(datetime)
2828

2929
Initialise the RTC. Datetime is a tuple of the form:
30-
30+
3131
``(year, month, day[, hour[, minute[, second[, microsecond[, tzinfo]]]]])``
3232

3333
.. method:: RTC.now()

docs/library/machine.TimerWiPy.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Methods
4747
tim.init(Timer.ONE_SHOT, width=32) # one shot 32-bit timer
4848

4949
Keyword arguments:
50-
50+
5151
- ``mode`` can be one of:
52-
52+
5353
- ``TimerWiPy.ONE_SHOT`` - The timer runs once until the configured
5454
period of the channel expires.
5555
- ``TimerWiPy.PERIODIC`` - The timer runs periodically at the configured
@@ -70,7 +70,7 @@ Methods
7070
object is returned (or ``None`` if there is no previous channel).
7171

7272
Otherwise, a TimerChannel object is initialized and returned.
73-
73+
7474
The operating mode is is the one configured to the Timer object that was used to
7575
create the channel.
7676

docs/library/pyb.ADC.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Usage::
1919
val = adc.read_core_vref() # read MCU VREF
2020
val = adc.read_vref() # read MCU supply voltage
2121

22-
22+
2323
Constructors
2424
------------
2525

docs/library/pyb.Accel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Constructors
1919
.. class:: pyb.Accel()
2020

2121
Create and return an accelerometer object.
22-
22+
2323
Methods
2424
-------
2525

docs/library/pyb.CAN.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Methods
9292

9393
Force a software restart of the CAN controller without resetting its
9494
configuration.
95-
95+
9696
If the controller enters the bus-off state then it will no longer participate
9797
in bus activity. If the controller is not configured to automatically restart
9898
(see :meth:`~CAN.init()`) then this method can be used to trigger a restart,

docs/library/pyb.ExtInt.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Constructors
5454
.. class:: pyb.ExtInt(pin, mode, pull, callback)
5555

5656
Create an ExtInt object:
57-
57+
5858
- ``pin`` is the pin on which to enable the interrupt (can be a pin object or any valid pin name).
5959
- ``mode`` can be one of:
6060
- ``ExtInt.IRQ_RISING`` - trigger on a rising edge;

docs/library/pyb.LCD.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ Methods
6363
.. method:: LCD.fill(colour)
6464

6565
Fill the screen with the given colour (0 or 1 for white or black).
66-
66+
6767
This method writes to the hidden buffer. Use ``show()`` to show the buffer.
6868

6969
.. method:: LCD.get(x, y)
7070

7171
Get the pixel at the position ``(x, y)``. Returns 0 or 1.
72-
72+
7373
This method reads from the visible buffer.
7474

7575
.. method:: LCD.light(value)
@@ -79,7 +79,7 @@ Methods
7979
.. method:: LCD.pixel(x, y, colour)
8080

8181
Set the pixel at ``(x, y)`` to the given colour (0 or 1).
82-
82+
8383
This method writes to the hidden buffer. Use ``show()`` to show the buffer.
8484

8585
.. method:: LCD.show()
@@ -89,7 +89,7 @@ Methods
8989
.. method:: LCD.text(str, x, y, colour)
9090

9191
Draw the given text to the position ``(x, y)`` using the given colour (0 or 1).
92-
92+
9393
This method writes to the hidden buffer. Use ``show()`` to show the buffer.
9494

9595
.. method:: LCD.write(str)

0 commit comments

Comments
 (0)