summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library/pyb.Accel.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.Accel.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.Accel.rst')
-rw-r--r--docs/library/pyb.Accel.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/library/pyb.Accel.rst b/docs/library/pyb.Accel.rst
index 53e410dfb9..2ae357fe70 100644
--- a/docs/library/pyb.Accel.rst
+++ b/docs/library/pyb.Accel.rst
@@ -22,7 +22,7 @@ Constructors
Methods
-------
-.. method:: accel.filtered_xyz()
+.. method:: Accel.filtered_xyz()
Get a 3-tuple of filtered x, y and z values.
@@ -31,18 +31,18 @@ Methods
with the sample from the current call. Returned values are therefore 4
times the size of what they would be from the raw x(), y() and z() calls.
-.. method:: accel.tilt()
+.. method:: Accel.tilt()
Get the tilt register.
-.. method:: accel.x()
+.. method:: Accel.x()
Get the x-axis value.
-.. method:: accel.y()
+.. method:: Accel.y()
Get the y-axis value.
-.. method:: accel.z()
+.. method:: Accel.z()
Get the z-axis value.