chore(doc) fix spelling in source comments and add missing parameter descriptions (#3607)
This commit is contained in:
@@ -130,7 +130,7 @@ Here are some simple examples of the callbacks:
|
||||
void my_flush_cb(lv_disp_drv_t * disp_drv, const lv_area_t * area, lv_color_t * color_p)
|
||||
{
|
||||
/*The most simple case (but also the slowest) to put all pixels to the screen one-by-one
|
||||
*`put_px` is just an example, it needs to implemented by you.*/
|
||||
*`put_px` is just an example, it needs to be implemented by you.*/
|
||||
int32_t x, y;
|
||||
for(y = area->y1; y <= area->y2; y++) {
|
||||
for(x = area->x1; x <= area->x2; x++) {
|
||||
|
||||
Reference in New Issue
Block a user