Skip to content

Commit 4d8494f

Browse files
committed
fix stubs
1 parent ec8b31e commit 4d8494f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared-bindings/bitmaptools/__init__.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ MP_DEFINE_CONST_FUN_OBJ_KW(bitmaptools_fill_region_obj, 0, bitmaptools_obj_fill_
299299
//|
300300
//| def boundary_fill(
301301
//| dest_bitmap: displayio.Bitmap,
302-
//| x: int, y: int
302+
//| x: int, y: int,
303303
//| value: int, background_value: int) -> None:
304304
//| """Draws the color value into the destination bitmap enclosed
305305
//| area of pixels of the background_value color. Like "Paint Bucket"
@@ -309,7 +309,7 @@ MP_DEFINE_CONST_FUN_OBJ_KW(bitmaptools_fill_region_obj, 0, bitmaptools_obj_fill_
309309
//| :param int x: x-pixel position of the first pixel to check and fill if needed
310310
//| :param int y: y-pixel position of the first pixel to check and fill if needed
311311
//| :param int value: Bitmap palette index that will be written into the
312-
//| enclosed area in the destination bitmap"""
312+
//| enclosed area in the destination bitmap
313313
//| :param int background_value: Bitmap palette index that will filled with the
314314
//| value color in the enclosed area in the destination bitmap"""
315315
//| ...

0 commit comments

Comments
 (0)