diff options
Diffstat (limited to 'docs/wipy/tutorial/repl.rst')
-rw-r--r-- | docs/wipy/tutorial/repl.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/wipy/tutorial/repl.rst b/docs/wipy/tutorial/repl.rst index 95aae54c3d..56c434f5ab 100644 --- a/docs/wipy/tutorial/repl.rst +++ b/docs/wipy/tutorial/repl.rst @@ -14,7 +14,7 @@ do:: >>> from machine import UART >>> import os >>> uart = UART(0, 115200) - >>> o.dupterm(uart) + >>> os.dupterm(uart) Place this piece of code inside your `boot.py` so that it's done automatically after reset. |