Skip to content

Commit 9238ee7

Browse files
authored
Merge pull request #10582 from dhalbert/doc-fixes
fix busio.UART.Parity documentation indentation
2 parents 4ee1a3e + 055034f commit 9238ee7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

shared-bindings/busio/UART.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -368,14 +368,14 @@ static mp_obj_t busio_uart_obj_reset_input_buffer(mp_obj_t self_in) {
368368
return mp_const_none;
369369
}
370370
static MP_DEFINE_CONST_FUN_OBJ_1(busio_uart_reset_input_buffer_obj, busio_uart_obj_reset_input_buffer);
371-
//| class Parity:
372-
//| """Enum-like class to define the parity used to verify correct data transfer."""
371+
//| class Parity:
372+
//| """Enum-like class to define the parity used to verify correct data transfer."""
373373
//|
374-
//| ODD: int
375-
//| """Total number of ones should be odd."""
374+
//| ODD: int
375+
//| """Total number of ones should be odd."""
376376
//|
377-
//| EVEN: int
378-
//| """Total number of ones should be even."""
377+
//| EVEN: int
378+
//| """Total number of ones should be even."""
379379
//|
380380
//|
381381
const mp_obj_type_t busio_uart_parity_type;

0 commit comments

Comments
 (0)