summaryrefslogtreecommitdiff
path: root/shared-bindings/displayio/Bitmap.c
diff options
context:
space:
mode:
authorHosted Weblate <hosted@weblate.org>2021-04-02 21:08:47 +0200
committerHosted Weblate <hosted@weblate.org>2021-04-02 21:08:47 +0200
commit2adb4b5e49b6ba7a594b7d347ebc0ff49a95ef53 (patch)
tree049b469742a8cae64dc154692de182b881c6d55b /shared-bindings/displayio/Bitmap.c
parent72d970ad984607e8d94784a3ceb6d81880aebd91 (diff)
parentc4a90d88578bbd4ca70e6e13dff42ea1baba1e99 (diff)
Merge remote-tracking branch 'origin/main' into main
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`.
//| """
//|