summaryrefslogtreecommitdiff
path: root/docs/pyboard/tutorial
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pyboard/tutorial')
-rw-r--r--docs/pyboard/tutorial/usb_mouse.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pyboard/tutorial/usb_mouse.rst b/docs/pyboard/tutorial/usb_mouse.rst
index 8166946ec..d05b16ed5 100644
--- a/docs/pyboard/tutorial/usb_mouse.rst
+++ b/docs/pyboard/tutorial/usb_mouse.rst
@@ -8,8 +8,8 @@ To do this we must first edit the ``boot.py`` file to change the USB
configuration. If you have not yet touched your ``boot.py`` file then it
will look something like this::
- # boot.py -- run on boot-up
- # can run arbitrary Python, but best to keep it minimal
+ # boot.py -- run on boot to configure USB and filesystem
+ # Put app code in main.py
import pyb
#pyb.main('main.py') # main script to run after this one