diff options
author | Damien George <damien.p.george@gmail.com> | 2018-09-20 17:12:36 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-09-20 17:14:13 +1000 |
commit | ad4fb62f13ba8c91aacb9097243180d38f941d2a (patch) | |
tree | e3ca69887c1813f72f35e057c5d31dbb0100d91a /docs/pyboard/tutorial/timer.rst | |
parent | 40a7e8c472c5befec0649923167e12b91cf0a6d4 (diff) |
docs/pyboard: Fix to use Sphinx style for internal/external links.
Diffstat (limited to 'docs/pyboard/tutorial/timer.rst')
-rw-r--r-- | docs/pyboard/tutorial/timer.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pyboard/tutorial/timer.rst b/docs/pyboard/tutorial/timer.rst index aedaaa13c..1cca18d83 100644 --- a/docs/pyboard/tutorial/timer.rst +++ b/docs/pyboard/tutorial/timer.rst @@ -50,8 +50,8 @@ Timer callbacks --------------- The next thing we can do is register a callback function for the timer to -execute when it triggers (see the [switch tutorial](tut-switch) for an -introduction to callback functions):: +execute when it triggers (see the :ref:`switch tutorial <pyboard_tutorial_switch>` +for an introduction to callback functions):: >>> tim.callback(lambda t:pyb.LED(1).toggle()) |