summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library/framebuf.rst
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-03-15 21:54:56 +1100
committerDamien George <damien.p.george@gmail.com>2017-03-15 21:54:56 +1100
commitfcab4356077435f0f4f9b068acb76e21d6cc20a6 (patch)
treefb13a5337840e88db487f67a04fddd25c46c6513 /docs/library/framebuf.rst
parent23a693ec2d8c2a194f61482dc0e1adb070fb6ad4 (diff)
downloadmicropython-fcab4356077435f0f4f9b068acb76e21d6cc20a6.tar.gz
micropython-fcab4356077435f0f4f9b068acb76e21d6cc20a6.zip
docs/library/framebuf: Fix typo in bit-width for MVLSB description.
Diffstat (limited to 'docs/library/framebuf.rst')
-rw-r--r--docs/library/framebuf.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/framebuf.rst b/docs/library/framebuf.rst
index 657ad461be..91fc362fdd 100644
--- a/docs/library/framebuf.rst
+++ b/docs/library/framebuf.rst
@@ -39,7 +39,7 @@ Constructors
- `height` is the height of the FrameBuffer in pixels
- `format` specifies the type of pixel used in the FrameBuffer;
valid values are ``framebuf.MVLSB``, ``framebuf.RGB565``
- and ``framebuf.GS4_HMSB``. MVLSB is monochrome 8-bit color,
+ and ``framebuf.GS4_HMSB``. MVLSB is monochrome 1-bit color,
RGB565 is RGB 16-bit color, and GS4_HMSB is grayscale 4-bit color.
Where a color value c is passed to a method, c is a small integer
with an encoding that is dependent on the format of the FrameBuffer.