From a98c845487298ecc59226e1cb2543eeada376c9c Mon Sep 17 00:00:00 2001 From: Marshall Thompson Date: Sun, 4 Sep 2022 19:57:13 -0600 Subject: [PATCH] docs: grammar (#1974) grammar fix --- 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 0dc492007da7..94666f493f7c 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -119,7 +119,7 @@ In Jest, `TestFunction` can also be of type `(done: DoneCallback) => void`. If t - **Type:** `(name: string, fn: TestFunction, timeout?: number) => void` - **Alias:** `it.concurrent` - `test.concurrent` marks consecutive tests to be run them in parallel. It receives the test name, an async function with the tests to collect, and an optional timeout (in milliseconds). + `test.concurrent` marks consecutive tests to be run in parallel. It receives the test name, an async function with the tests to collect, and an optional timeout (in milliseconds). ```ts import { describe, test } from 'vitest'