summaryrefslogtreecommitdiff
path: root/shared-bindings
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2021-03-17 16:38:10 -0500
committerJeff Epler <jepler@gmail.com>2021-03-17 16:38:10 -0500
commit720d242b4f522b4424ab6ac6df8385c5c23eaba0 (patch)
tree5cf1cf9fdb9a686e9d1ea8c6abb8a7a6be5e48c9 /shared-bindings
parentc157ada90c3dabbb005b431f98e5c81e57e8a4bc (diff)
doc fix
Diffstat (limited to 'shared-bindings')
-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 491b4e6dd..ebe294609 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.fromarray` to efficiently create an array with the same content as a Bitmap;
+//| A read-only buffer can be used e.g., with `ulab.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`.
//| """
//|