From 0814cbe858fd7c7519c1caa1124f068e007c2d64 Mon Sep 17 00:00:00 2001 From: vaakian X <30516060+vaakian@users.noreply.github.com> Date: Thu, 1 Sep 2022 18:31:49 +0800 Subject: [PATCH] docs: fix missing word (#1949) --- docs/api/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/index.md b/docs/api/index.md index 5674f4de7aef..256f206331ea 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -1679,7 +1679,7 @@ These functions allow you to hook into the life cycle of tests to avoid repeatin Register a callback to be called after each one of the tests in the current context completes. If the function returns a promise, Vitest waits until the promise resolve before continuing. - Optionally, you can a timeout (in milliseconds) for specifying how long to wait before terminating. The default is 5 seconds. + Optionally, you can provide a timeout (in milliseconds) for specifying how long to wait before terminating. The default is 5 seconds. ```ts import { afterEach } from 'vitest'