From c6add5f107b31389947600b95b3baf704bf1fb64 Mon Sep 17 00:00:00 2001 From: T-Rekt Date: Wed, 26 Oct 2022 15:35:43 +0700 Subject: [PATCH] docs(intro): fix HTML escaped characters in code (#3768) --- docs/intro/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro/index.md b/docs/intro/index.md index 66098a95c..ffabba219 100644 --- a/docs/intro/index.md +++ b/docs/intro/index.md @@ -170,9 +170,9 @@ Probably there a bug in your display driver. Try the following code without usin lv_color_t buf[BUF_W * BUF_H]; lv_color_t * buf_p = buf; uint16_t x, y; -for(y = 0; y < BUF_H; y++) { +for(y = 0; y < BUF_H; y++) {     lv_color_t c = lv_color_mix(LV_COLOR_BLUE, LV_COLOR_RED, (y * 255) / BUF_H); -    for(x = 0; x < BUF_W; x++){ +    for(x = 0; x < BUF_W; x++){         (*buf_p) =  c;         buf_p++;     }