diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-06-25 13:28:23 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-06-25 13:28:23 +0300 |
commit | cfce7d784e2dbf0d74b1ea7ce0a06b6597337800 (patch) | |
tree | 4bffb5237e79b097c6fef42e11f0a7767d65f727 | |
parent | ba33c544bb9b5bd0476e07a12a34d2f72579075e (diff) | |
download | micropython-cfce7d784e2dbf0d74b1ea7ce0a06b6597337800.tar.gz micropython-cfce7d784e2dbf0d74b1ea7ce0a06b6597337800.zip |
docs/lcd160cr: Group related constants together. Use full sentences.
Per the latest docs conventions.
-rw-r--r-- | docs/library/lcd160cr.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/library/lcd160cr.rst b/docs/library/lcd160cr.rst index 1b0321538b..567994640b 100644 --- a/docs/library/lcd160cr.rst +++ b/docs/library/lcd160cr.rst @@ -380,15 +380,15 @@ Constants --------- .. data:: lcd160cr.PORTRAIT -.. data:: lcd160cr.LANDSCAPE -.. data:: lcd160cr.PORTRAIT_UPSIDEDOWN -.. data:: lcd160cr.LANDSCAPE_UPSIDEDOWN + lcd160cr.LANDSCAPE + lcd160cr.PORTRAIT_UPSIDEDOWN + lcd160cr.LANDSCAPE_UPSIDEDOWN - orientation of the display, used by :meth:`LCD160CR.set_orient` + Orientations of the display, used by :meth:`LCD160CR.set_orient`. .. data:: lcd160cr.STARTUP_DECO_NONE -.. data:: lcd160cr.STARTUP_DECO_MLOGO -.. data:: lcd160cr.STARTUP_DECO_INFO + lcd160cr.STARTUP_DECO_MLOGO + lcd160cr.STARTUP_DECO_INFO - type of start-up decoration, can be or'd together, used by - :meth:`LCD160CR.set_startup_deco` + Types of start-up decoration, can be OR'ed together, used by + :meth:`LCD160CR.set_startup_deco`. |