Merge pull request #4827 from jepler/fix-whitespace-uart

fix formatting
This commit is contained in:
Dan Halbert 2021-05-29 10:28:25 -04:00 committed by GitHub
commit 96c04b753d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -156,8 +156,7 @@ void common_hal_busio_uart_construct(busio_uart_obj_t *self,
self->buffer_length = receiver_buffer_size;
if (NULL != receiver_buffer) {
self->buffer = receiver_buffer;
}
else {
} else {
// Initially allocate the UART's buffer in the long-lived part of the
// heap. UARTs are generally long-lived objects, but the "make long-
// lived" machinery is incapable of moving internal pointers like