Skip to content

Commit ff9b10c

Browse files
committed
fix doc build problems
1 parent cbfa41f commit ff9b10c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shared-bindings/bitmaptools/__init__.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -650,10 +650,10 @@ MP_DEFINE_CONST_FUN_OBJ_KW(bitmaptools_readinto_obj, 0, bitmaptools_readinto);
650650
//| class DitherAlgorithm:
651651
//| """Identifies the algorith for dither to use"""
652652
//|
653-
//| Atkinson: object
653+
//| Atkinson: "DitherAlgorithm"
654654
//| """The classic Atkinson dither, often associated with the Hypercard esthetic"""
655655
//|
656-
//| FloydStenberg: object
656+
//| FloydStenberg: "DitherAlgorithm"
657657
//| """The Floyd-Stenberg dither"""
658658
//|
659659
MAKE_ENUM_VALUE(bitmaptools_dither_algorithm_type, dither_algorithm, Atkinson, DITHER_ALGORITHM_ATKINSON);
@@ -675,7 +675,7 @@ MAKE_ENUM_TYPE(bitmaptools, DitherAlgorithm, bitmaptools_dither_algorithm);
675675
//| :param bitmap dest_bitmap: Destination bitmap. It must have a value_count of 2 or 65536. The stored values are 0 and the maximum pixel value.
676676
//| :param bitmap source_bitmap: Source bitmap that contains the graphical region to be dithered. It must have a value_count of 65536.
677677
//| :param colorspace: The colorspace of the image. The supported colorspaces are ``RGB565``, ``BGR565``, ``RGB565_SWAPPED``, and ``BGR565_SWAPPED``
678-
//| :param algorithm: The dither algorithm to use, one of the `DitherAlgorithm `values.
678+
//| :param algorithm: The dither algorithm to use, one of the `DitherAlgorithm` values.
679679
//| """
680680
//| ...
681681
//|

0 commit comments

Comments
 (0)