Skip to content

Commit 3c3b7cb

Browse files
committed
whitespace in docstrings
1 parent 5168f6e commit 3c3b7cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

shared-bindings/qrio/PixelPolicy.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@
3434
//| """The input buffer to `QRDecoder.decode` consists of greyscale values in every byte"""
3535
//|
3636
//| EVEN_BYTES: PixelPolicy
37-
//| """The input buffer to `QRDecoder.decode` consists of greyscale values in positions 0, 2, …, and ignored bytes in positions 1, 3, …. This can decode directly from YUV images where the even bytes hold the Y (luminance) data."""
37+
//| """The input buffer to `QRDecoder.decode` consists of greyscale values in positions 0, 2, …, and ignored bytes in positions 1, 3, …. This can decode directly from YUV images where the even bytes hold the Y (luminance) data."""
3838
//|
3939
//| ODD_BYTES: PixelPolicy
40-
//| """The input buffer to `QRDecoder.decode` consists of greyscale values in positions 1, 3, …, and ignored bytes in positions 0, 2, …. This can decode directly from YUV images where the odd bytes hold the Y (luminance) data"""
40+
//| """The input buffer to `QRDecoder.decode` consists of greyscale values in positions 1, 3, …, and ignored bytes in positions 0, 2, …. This can decode directly from YUV images where the odd bytes hold the Y (luminance) data"""
4141
//|
4242
//| RGB565_SWAPPED: PixelPolicy
43-
//| """The input buffer to `QRDecoder.decode` consists of RGB565 values in byte-swapped order. The green component is used."""
43+
//| """The input buffer to `QRDecoder.decode` consists of RGB565 values in byte-swapped order. Most cameras produce data in byte-swapped order. The green component is used."""
4444
//|
4545
//| RGB565: PixelPolicy
46-
//| """The input buffer to `QRDecoder.decode` consists of RGB565 values. The green component is used."""
46+
//| """The input buffer to `QRDecoder.decode` consists of RGB565 values in native order. The green component is used."""
4747
//|
4848

4949
MAKE_ENUM_VALUE(qrio_pixel_policy_type, qrio_pixel_policy, EVERY_BYTE, QRIO_EVERY_BYTE);

0 commit comments

Comments
 (0)