diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-09 03:03:53 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-09 03:03:53 +0300 |
commit | 79b40d11276b2b70b2eaa2fe0cac4d3d830c19e4 (patch) | |
tree | 6fac3aa3d59301d621896e7597bfbd12d810c43c /docs/library/machine.Pin.rst | |
parent | a0c296f6d515b0a18306213cf64d9580875448f6 (diff) | |
download | micropython-79b40d11276b2b70b2eaa2fe0cac4d3d830c19e4.tar.gz micropython-79b40d11276b2b70b2eaa2fe0cac4d3d830c19e4.zip |
docs/machine*: Remove explicit targets and "machine." prefixes on classes.
With currentmodule:: set properly, none are needed. Extra "machine." prefix
produces wrong indexing data.
Diffstat (limited to 'docs/library/machine.Pin.rst')
-rw-r--r-- | docs/library/machine.Pin.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/machine.Pin.rst b/docs/library/machine.Pin.rst index 21e5323d5b..fdada2f383 100644 --- a/docs/library/machine.Pin.rst +++ b/docs/library/machine.Pin.rst @@ -58,7 +58,7 @@ Usage Model: Constructors ------------ -.. class:: machine.Pin(id, ...) +.. class:: Pin(id, ...) Create a new Pin object associated with the id. If additional arguments are given, they are used to initialise the pin. See :meth:`Pin.init`. |