From 00e7fe8ab109a21e62ce367ebd9cc6a5dfb48803 Mon Sep 17 00:00:00 2001 From: Arsenijs <crimier@yandex.ru> Date: Tue, 30 Jul 2019 01:42:33 +0300 Subject: [PATCH] docs/library/framebuf: Add missing module reference in example code. --- docs/library/framebuf.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- GitLab