Skip to content

Commit 7f62962

Browse files
committed
Added hanging indents to docs per @sommersoft's suggestion
1 parent 983e1af commit 7f62962

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

shared-bindings/displayio/Bitmap.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,19 +174,19 @@ STATIC mp_obj_t bitmap_subscr(mp_obj_t self_in, mp_obj_t index_obj, mp_obj_t val
174174

175175
//| def blit(self, x: int, y: int, source_bitmap: bitmap, *, x1: int, y1: int, x2: int, y2: int, skip_index: int) -> None:
176176
//| """Inserts the source_bitmap region defined by rectangular boundaries
177-
//| (x1,y1) and (x2,y2) into the bitmap at the specified (x,y) location.
177+
//| (x1,y1) and (x2,y2) into the bitmap at the specified (x,y) location.
178178
//|
179179
//| :param int x: Horizontal pixel location in bitmap where source_bitmap upper-left
180-
//| corner will be placed
180+
//| corner will be placed
181181
//| :param int y: Vertical pixel location in bitmap where source_bitmap upper-left
182-
//| corner will be placed
182+
//| corner will be placed
183183
//| :param bitmap source_bitmap: Source bitmap that contains the graphical region to be copied
184184
//| :param int x1: Minimum x-value for rectangular bounding box to be copied from the source bitmap
185185
//| :param int y1: Minimum y-value for rectangular bounding box to be copied from the source bitmap
186186
//| :param int x2: Maximum x-value (exclusive) for rectangular bounding box to be copied from the source bitmap
187187
//| :param int y2: Maximum y-value (exclusive) for rectangular bounding box to be copied from the source bitmap
188188
//| :param int skip_index: bitmap palette index in the source that will not be copied,
189-
//| set to None to copy all pixels"""
189+
//| set to None to copy all pixels"""
190190
//| ...
191191
//|
192192
STATIC mp_obj_t displayio_bitmap_obj_blit(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args){

0 commit comments

Comments
 (0)