summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library/pyb.ExtInt.rst
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-06-08 16:21:28 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-06-08 16:21:28 +0300
commita384a5313013d8ffda4db0e509cf798a080b3526 (patch)
treec1b87be77f0a3a68fc5a55880bf9de8af3b90b87 /docs/library/pyb.ExtInt.rst
parent585aafc27eb7fa8fe660e3eeaa29bf8d7ab99213 (diff)
downloadmicropython-a384a5313013d8ffda4db0e509cf798a080b3526.tar.gz
micropython-a384a5313013d8ffda4db0e509cf798a080b3526.zip
docs/pyb.*: Use proper class case in method headers.
Class designator will be used as is in indexes, so must match actual class name.
Diffstat (limited to 'docs/library/pyb.ExtInt.rst')
-rw-r--r--docs/library/pyb.ExtInt.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/library/pyb.ExtInt.rst b/docs/library/pyb.ExtInt.rst
index 89db62e464..d8f4d92bb8 100644
--- a/docs/library/pyb.ExtInt.rst
+++ b/docs/library/pyb.ExtInt.rst
@@ -80,20 +80,20 @@ Class methods
Methods
-------
-.. method:: extint.disable()
+.. method:: ExtInt.disable()
Disable the interrupt associated with the ExtInt object.
This could be useful for debouncing.
-.. method:: extint.enable()
+.. method:: ExtInt.enable()
Enable a disabled interrupt.
-.. method:: extint.line()
+.. method:: ExtInt.line()
Return the line number that the pin is mapped to.
-.. method:: extint.swint()
+.. method:: ExtInt.swint()
Trigger the callback from software.