summaryrefslogtreecommitdiffstatshomepage
path: root/docs/develop/porting.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/develop/porting.rst')
-rw-r--r--docs/develop/porting.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/develop/porting.rst b/docs/develop/porting.rst
index 08f3557f18..549227d762 100644
--- a/docs/develop/porting.rst
+++ b/docs/develop/porting.rst
@@ -245,8 +245,8 @@ That should give a MicroPython REPL. You can then run commands like:
.. code-block:: bash
MicroPython v1.13 on 2021-01-01; example-board with unknown-cpu
- >>> import usys
- >>> usys.implementation
+ >>> import sys
+ >>> sys.implementation
('micropython', (1, 13, 0))
>>>