From 38aad4ea1e92168a08379b1baf35fb1139a70873 Mon Sep 17 00:00:00 2001 From: Christopher Haws Date: Mon, 14 Aug 2023 01:25:20 -0700 Subject: [PATCH] docs: fix incorrect word in getting started docs (#3895) --- docs/guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/index.md b/docs/guide/index.md index 88666454766a..ac0ebce9d895 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -109,7 +109,7 @@ export default defineConfig({ Even if you do not use Vite yourself, Vitest relies heavily on it for its transformation pipeline. For that reason, you can also configure any property described in [Vite documentation](https://vitejs.dev/config/). ::: -If you are already using Vite, add `test` property in your Vite config. You'll also need to add a reference to Vitest types using a [triple slash command](https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html#-reference-types-) at the top of your config file. +If you are already using Vite, add `test` property in your Vite config. You'll also need to add a reference to Vitest types using a [triple slash directive](https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html#-reference-types-) at the top of your config file. ```ts ///