summaryrefslogtreecommitdiff
path: root/docs/library/framebuf.rst
diff options
context:
space:
mode:
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 ed4b78ab1..b6d7dba5d 100644
--- a/docs/library/framebuf.rst
+++ b/docs/library/framebuf.rst
@@ -19,7 +19,7 @@ For example::
import framebuf
# FrameBuffer needs 2 bytes for every RGB565 pixel
- fbuf = FrameBuffer(bytearray(10 * 100 * 2), 10, 100, framebuf.RGB565)
+ fbuf = framebuf.FrameBuffer(bytearray(10 * 100 * 2), 10, 100, framebuf.RGB565)
fbuf.fill(0)
fbuf.text('MicroPython!', 0, 0, 0xffff)