summaryrefslogtreecommitdiff
path: root/shared-bindings/displayio
diff options
context:
space:
mode:
authorKevin Matocha <kmatocha@icloud.com>2020-08-21 20:50:15 -0500
committerKevin Matocha <kmatocha@icloud.com>2020-08-21 20:50:15 -0500
commit7f629624dbd1d67576af495026305b75200f8872 (patch)
treea378143912eca74921c4a3ca3563daf61f590a1d /shared-bindings/displayio
parent983e1af33d0440329aa4f34109994f8597f0737a (diff)
Added hanging indents to docs per @sommersoft's suggestion
Diffstat (limited to 'shared-bindings/displayio')
-rw-r--r--shared-bindings/displayio/Bitmap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shared-bindings/displayio/Bitmap.c b/shared-bindings/displayio/Bitmap.c
index c13ed0407..b1d73115d 100644
--- a/shared-bindings/displayio/Bitmap.c
+++ b/shared-bindings/displayio/Bitmap.c
@@ -174,19 +174,19 @@ STATIC mp_obj_t bitmap_subscr(mp_obj_t self_in, mp_obj_t index_obj, mp_obj_t val
//| def blit(self, x: int, y: int, source_bitmap: bitmap, *, x1: int, y1: int, x2: int, y2: int, skip_index: int) -> None:
//| """Inserts the source_bitmap region defined by rectangular boundaries
-//| (x1,y1) and (x2,y2) into the bitmap at the specified (x,y) location.
+//| (x1,y1) and (x2,y2) into the bitmap at the specified (x,y) location.
//|
//| :param int x: Horizontal pixel location in bitmap where source_bitmap upper-left
-//| corner will be placed
+//| corner will be placed
//| :param int y: Vertical pixel location in bitmap where source_bitmap upper-left
-//| corner will be placed
+//| corner will be placed
//| :param bitmap source_bitmap: Source bitmap that contains the graphical region to be copied
//| :param int x1: Minimum x-value for rectangular bounding box to be copied from the source bitmap
//| :param int y1: Minimum y-value for rectangular bounding box to be copied from the source bitmap
//| :param int x2: Maximum x-value (exclusive) for rectangular bounding box to be copied from the source bitmap
//| :param int y2: Maximum y-value (exclusive) for rectangular bounding box to be copied from the source bitmap
//| :param int skip_index: bitmap palette index in the source that will not be copied,
-//| set to None to copy all pixels"""
+//| set to None to copy all pixels"""
//| ...
//|
STATIC mp_obj_t displayio_bitmap_obj_blit(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args){