diff options
| author | François Magimel | 2025-09-09 23:51:13 +0200 |
|---|---|---|
| committer | GitHub | 2025-09-09 23:51:13 +0200 |
| commit | 09ab67c0440d8e5e3faf832d23eb1b754845a573 (patch) | |
| tree | 0edccafc937149afdc8b964004f61fe80942cfa2 /drivers | |
| parent | 7be4540b4688eab74920eb4cb2347af43fb6a779 (diff) | |
docs: fix misspellings (#25555)
* docs: fix misspellings
* docs: do line breaks with HTML instead of spaces
To remove trailing spaces and to avoid breaking things, line breaks can
be done with the HTML br tag.
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/lcd/st7565.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/lcd/st7565.h b/drivers/lcd/st7565.h index 0e42c8765b..7ab10e23ed 100644 --- a/drivers/lcd/st7565.h +++ b/drivers/lcd/st7565.h @@ -116,12 +116,12 @@ void st7565_render(void); void st7565_set_cursor(uint8_t col, uint8_t line); // Advances the cursor to the next page, writing ' ' if true -// Wraps to the begining when out of bounds +// Wraps to the beginning when out of bounds void st7565_advance_page(bool clearPageRemainder); // Moves the cursor forward 1 character length // Advance page if there is not enough room for the next character -// Wraps to the begining when out of bounds +// Wraps to the beginning when out of bounds void st7565_advance_char(void); // Writes a single character to the buffer at current cursor position |