summaryrefslogtreecommitdiffstatshomepage
path: root/docs/reference
diff options
context:
space:
mode:
authorRonald Weber <ronaldxweber@gmail.com>2025-02-24 17:34:29 +0100
committerDamien George <damien@micropython.org>2025-02-25 17:07:16 +1100
commit3f0dd13d931c88a759a779853dfeaee566f0e79a (patch)
treea979b72a2db0d296e3ab14fe13f555b53a044a3b /docs/reference
parent5e206fdeb5225ce24efb9411cc879bafaa04b86f (diff)
downloadmicropython-3f0dd13d931c88a759a779853dfeaee566f0e79a.tar.gz
micropython-3f0dd13d931c88a759a779853dfeaee566f0e79a.zip
docs: Fix double 'the' in documentation.
Signed-off-by: Ronald Weber <ronaldxweber@gmail.com>
Diffstat (limited to 'docs/reference')
-rw-r--r--docs/reference/repl.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/repl.rst b/docs/reference/repl.rst
index be02ddebde..2c019350f7 100644
--- a/docs/reference/repl.rst
+++ b/docs/reference/repl.rst
@@ -213,7 +213,7 @@ echo turned off, and with optional flow control.
Raw mode is entered using Ctrl-A. You then send your python code, followed by
a Ctrl-D. The Ctrl-D will be acknowledged by 'OK' and then the python code will
be compiled and executed. Any output (or errors) will be sent back. Entering
-Ctrl-B will leave raw mode and return the the regular (aka friendly) REPL.
+Ctrl-B will leave raw mode and return the regular (aka friendly) REPL.
Raw-paste mode is an additional mode within the raw REPL that includes flow control,
and which compiles code as it receives it. This makes it more robust for high-speed