chore(docs): fix typo (#5738)

This commit is contained in:
蒋慧赟
2024-02-24 13:24:31 +00:00
committed by GitHub
parent 10f9d98419
commit 9f7e349271

View File

@@ -57,7 +57,7 @@ and configured with ``lv_anim_set_...()`` functions.
lv_anim_set_delay(&a, delay); lv_anim_set_delay(&a, delay);
/*Set path (curve). Default is linear*/ /*Set path (curve). Default is linear*/
lv_anim_set_path(&a, lv_anim_path_ease_in); lv_anim_set_path_cb(&a, lv_anim_path_ease_in);
/*Set a callback to indicate when the animation is completed.*/ /*Set a callback to indicate when the animation is completed.*/
lv_anim_set_completed_cb(&a, completed_cb); lv_anim_set_completed_cb(&a, completed_cb);