summaryrefslogtreecommitdiff
path: root/shared-bindings/framebufferio
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/framebufferio')
-rw-r--r--shared-bindings/framebufferio/FramebufferDisplay.c5
-rw-r--r--shared-bindings/framebufferio/__init__.c16
2 files changed, 3 insertions, 18 deletions
diff --git a/shared-bindings/framebufferio/FramebufferDisplay.c b/shared-bindings/framebufferio/FramebufferDisplay.c
index 5e63b988e..51ef09059 100644
--- a/shared-bindings/framebufferio/FramebufferDisplay.c
+++ b/shared-bindings/framebufferio/FramebufferDisplay.c
@@ -41,10 +41,7 @@
#include "supervisor/shared/translate.h"
//| class FramebufferDisplay:
-//| """.. currentmodule:: framebufferio
-//|
-//| :class:`FramebufferDisplay` -- Manage updating a display with framebuffer in RAM
-//| ================================================================================
+//| """Manage updating a display with framebuffer in RAM
//|
//| This initializes a display and connects it into CircuitPython. Unlike other
//| objects in CircuitPython, Display objects live until `displayio.release_displays()`
diff --git a/shared-bindings/framebufferio/__init__.c b/shared-bindings/framebufferio/__init__.c
index 50725c515..492423464 100644
--- a/shared-bindings/framebufferio/__init__.c
+++ b/shared-bindings/framebufferio/__init__.c
@@ -28,25 +28,13 @@
#include "shared-bindings/framebufferio/__init__.h"
#include "shared-bindings/framebufferio/FramebufferDisplay.h"
-//| """:mod:`framebufferio` --- Native framebuffer display driving
-//| =========================================================================
-//|
-//| .. module:: framebufferio
-//| :synopsis: Native helpers for driving displays
-//| :platform: SAMD51, nRF52
+//| """Native framebuffer display driving
//|
//| The `framebufferio` module contains classes to manage display output
//| including synchronizing with refresh rates and partial updating.
//| It is used in conjunction with classes from `displayio` to actually
//| place items on the display; and classes like `RGBMatrix` to actually
-//| drive the display.
-//|
-//| Libraries
-//|
-//| .. toctree::
-//| :maxdepth: 3
-//|
-//| FramebufferDisplay"""
+//| drive the display."""
//|
#if CIRCUITPY_FRAMEBUFFERIO