diff --git a/docs/overview/file-system.md b/docs/overview/file-system.md index 5ef5bc5054df..7d384fa89474 100644 --- a/docs/overview/file-system.md +++ b/docs/overview/file-system.md @@ -21,7 +21,7 @@ static lv_fs_drv_t drv; /*Needs to be static or global*/ lv_fs_drv_init(&drv); /*Basic initialization*/ drv.letter = 'S'; /*An uppercase letter to identify the drive */ -drv.cache_size = my_cahce_size; /*Cache size for reading in bytes. 0 to not cache.*/ +drv.cache_size = my_cache_size; /*Cache size for reading in bytes. 0 to not cache.*/ drv.ready_cb = my_ready_cb; /*Callback to tell if the drive is ready to use */ drv.open_cb = my_open_cb; /*Callback to open a file */