Skip to content

Commit 3f0dd13

Browse files
rxwbdpgeorge
authored andcommitted
docs: Fix double 'the' in documentation.
Signed-off-by: Ronald Weber <[email protected]>
1 parent 5e206fd commit 3f0dd13

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/esp8266/tutorial/repl.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ browser. The latest versions of Firefox and Chrome are supported.
3838

3939
For your convenience, WebREPL client is hosted at
4040
`<http://micropython.org/webrepl>`__. Alternatively, you can install it
41-
locally from the the GitHub repository
41+
locally from the GitHub repository
4242
`<https://github.com/micropython/webrepl>`__.
4343

4444
Before connecting to WebREPL, you should set a password and enable it via

docs/library/framebuf.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Drawing text
114114

115115
.. method:: FrameBuffer.text(s, x, y[, c])
116116

117-
Write text to the FrameBuffer using the the coordinates as the upper-left
117+
Write text to the FrameBuffer using the coordinates as the upper-left
118118
corner of the text. The color of the text can be defined by the optional
119119
argument but is otherwise a default value of 1. All characters have
120120
dimensions of 8x8 pixels and there is currently no way to change the font.

docs/library/machine.UART.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Methods
8383

8484
- *pins* is a 4 or 2 item list indicating the TX, RX, RTS and CTS pins (in that order).
8585
Any of the pins can be None if one wants the UART to operate with limited functionality.
86-
If the RTS pin is given the the RX pin must be given as well. The same applies to CTS.
86+
If the RTS pin is given the RX pin must be given as well. The same applies to CTS.
8787
When no pins are given, then the default set of TX and RX pins is taken, and hardware
8888
flow control will be disabled. If *pins* is ``None``, no pin assignment will be made.
8989

docs/reference/repl.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ echo turned off, and with optional flow control.
213213
Raw mode is entered using Ctrl-A. You then send your python code, followed by
214214
a Ctrl-D. The Ctrl-D will be acknowledged by 'OK' and then the python code will
215215
be compiled and executed. Any output (or errors) will be sent back. Entering
216-
Ctrl-B will leave raw mode and return the the regular (aka friendly) REPL.
216+
Ctrl-B will leave raw mode and return the regular (aka friendly) REPL.
217217

218218
Raw-paste mode is an additional mode within the raw REPL that includes flow control,
219219
and which compiles code as it receives it. This makes it more robust for high-speed

0 commit comments

Comments
 (0)