From 481b9c224557aff2134e420677b9108422a2f7db Mon Sep 17 00:00:00 2001
From: Kiryl Mialeshka <8974488+meskill@users.noreply.github.com>
Date: Sat, 4 Nov 2023 00:14:18 +0100
Subject: [PATCH] docs(rgblight): fix typos (#22399)
---
docs/feature_rgblight.md | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/docs/feature_rgblight.md b/docs/feature_rgblight.md
index 39b7e6a6f1e1..0288fb04b2a7 100644
--- a/docs/feature_rgblight.md
+++ b/docs/feature_rgblight.md
@@ -524,7 +524,6 @@ By defining `RGBLIGHT_LED_MAP` as in the example below, you can specify the LED
```
-```
## Clipping Range
Using the `rgblight_set_clipping_range()` function, you can prepare more buffers than the actual number of LEDs, and output some of the buffers to the LEDs. This is useful if you want the split keyboard to treat left and right LEDs as logically contiguous.
@@ -544,8 +543,8 @@ In addition to setting the Clipping Range, you can use `RGBLIGHT_LED_MAP` togeth
#define RGBLED_NUM 8
#define RGBLIGHT_LED_MAP { 7, 6, 5, 4, 3, 2, 1, 0 }
-// some soruce
- rgblight_set_clipping_range(3, 4);
+// some source
+rgblight_set_clipping_range(3, 4);
```