summaryrefslogtreecommitdiff
path: root/shared-bindings/displayio/Bitmap.c
diff options
context:
space:
mode:
authorDan Halbert <halbert@adafruit.com>2021-04-02 15:08:41 -0400
committerGitHub <noreply@github.com>2021-04-02 15:08:41 -0400
commitc4a90d88578bbd4ca70e6e13dff42ea1baba1e99 (patch)
tree8048850aa6782224f4905a0987eac1eaf7b57f8a /shared-bindings/displayio/Bitmap.c
parent51c09e877d72d07d06276a8f9d40342833412a72 (diff)
parentfb7b968b1027010178bb2b64bdccbad3beb642e6 (diff)
Merge pull request #4533 from jepler/upgrade-ulab
update ulab to 2.1.5 (+ a doc building fix in ulab)
Diffstat (limited to 'shared-bindings/displayio/Bitmap.c')
-rw-r--r--shared-bindings/displayio/Bitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/displayio/Bitmap.c b/shared-bindings/displayio/Bitmap.c
index ebe294609..3b2a836eb 100644
--- a/shared-bindings/displayio/Bitmap.c
+++ b/shared-bindings/displayio/Bitmap.c
@@ -43,7 +43,7 @@
//| per row is a multiple of 4, then the resulting memoryview will correspond directly with the bitmap's contents. Otherwise,
//| the bitmap data is packed into the memoryview with unspecified padding.
//|
-//| A read-only buffer can be used e.g., with `ulab.frombuffer` to efficiently create an array with the same content as a Bitmap;
+//| A read-only buffer can be used e.g., with ``ulab.numpy.frombuffer`` to efficiently create an array with the same content as a Bitmap;
//| to move data efficiently from ulab back into a Bitmap, use `bitmaptools.arrayblit`.
//| """
//|