summaryrefslogtreecommitdiff
path: root/docs/feature_oled_driver.md
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-10-05 16:55:12 +0000
committerQMK Bot <hello@qmk.fm>2022-10-05 16:55:12 +0000
commit86ce1d4b04031174b3eca666fbee5f7c9c706ab2 (patch)
tree1893ffaa3f6096e3a07d8cf971c14880db7e82bf /docs/feature_oled_driver.md
parentd1b6b062024dddf047f760efbad21edb2acca394 (diff)
parent959f4cbb621868a4f0c1701f54ad2a1f45d889af (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/feature_oled_driver.md')
-rw-r--r--docs/feature_oled_driver.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_oled_driver.md b/docs/feature_oled_driver.md
index f73909f486..b7451f17df 100644
--- a/docs/feature_oled_driver.md
+++ b/docs/feature_oled_driver.md
@@ -259,12 +259,12 @@ void oled_render(void);
void oled_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 oled_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 oled_advance_char(void);
// Writes a single character to the buffer at current cursor position