From d83501d8965db49d7b2f6fb526337867ee91a8f8 Mon Sep 17 00:00:00 2001 From: slimlime <30815731+slimlime@users.noreply.github.com> Date: Wed, 1 Apr 2026 12:00:00 +0800 Subject: [PATCH] :books: Quick typo check. Update replay.md (#237) Precise typo check of inprecise -> imprecise --- docs/replay.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/replay.md b/docs/replay.md index d6ac30c4..9c200491 100644 --- a/docs/replay.md +++ b/docs/replay.md @@ -6,7 +6,7 @@ During replay, we will get the complete snapshot chain at one time. If all the s The reason why **high precision** is emphasized is because the native `setTimeout` does not guarantee accurate execution after the set delay time, for example, when the main thread is blocked. -For our replay function, this inprecise delay is unacceptable and can lead to various weird phenomena, so we implement a constantly calibrated timer with `requestAnimationFrame` to ensure that in most cases incremental snapshots have a replay delay of no more than one frame. +For our replay function, this imprecise delay is unacceptable and can lead to various weird phenomena, so we implement a constantly calibrated timer with `requestAnimationFrame` to ensure that in most cases incremental snapshots have a replay delay of no more than one frame. At the same time, the custom timer is also the basis for our "fast forward" function.