Skip to content

Commit 67b401a

Browse files
authored
docs(coverage): small typos (#8113)
1 parent b87ee3e commit 67b401a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/guide/coverage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ Coverage collection is performed during runtime by instructing V8 using [`node:i
5454
- ✅ Recommended option to use
5555
- ✅ No pre-transpile step. Test files can be executed as-is.
5656
- ✅ Faster execute times than Istanbul.
57-
- ✅ Lower memory usagethan Istanbul.
57+
- ✅ Lower memory usage than Istanbul.
5858
- ✅ Coverage report accuracy is as good as with Istanbul ([since Vitest `v3.2.0`](/blog/vitest-3-2#coverage-v8-ast-aware-remapping)).
5959
- ⚠️ In some cases can be slower than Istanbul, e.g. when loading lots of different modules. V8 does not support limiting coverage collection to specific modules.
60-
- ⚠️ There are some minor limitations set by V8 engine. See [`ast-v8-to-istanbl` | Limitations](https://github.com/AriPerkkio/ast-v8-to-istanbul?tab=readme-ov-file#limitations).
60+
- ⚠️ There are some minor limitations set by V8 engine. See [`ast-v8-to-istanbul` | Limitations](https://github.com/AriPerkkio/ast-v8-to-istanbul?tab=readme-ov-file#limitations).
6161
- ❌ Does not work on environments that don't use V8, such as Firefox or Bun. Or on environments that don't expose V8 coverage via profiler, such as Cloudflare Workers.
6262

6363
<div style="display: flex; flex-direction: column; align-items: center; padding: 2rem 0; max-width: 20rem;">
@@ -282,7 +282,7 @@ export default defineConfig({
282282
Both coverage providers have their own ways how to ignore code from coverage reports:
283283

284284
- [`v8`](https://github.com/istanbuljs/v8-to-istanbul#ignoring-uncovered-lines)
285-
- [`ìstanbul`](https://github.com/istanbuljs/nyc#parsing-hints-ignoring-lines)
285+
- [`istanbul`](https://github.com/istanbuljs/nyc#parsing-hints-ignoring-lines)
286286
- `v8` with [`experimentalAstAwareRemapping: true`](https://vitest.dev/config/#coverage-experimentalAstAwareRemapping) see [ast-v8-to-istanbul | Ignoring code](https://github.com/AriPerkkio/ast-v8-to-istanbul?tab=readme-ov-file#ignoring-code)
287287

288288
When using TypeScript the source codes are transpiled using `esbuild`, which strips all comments from the source codes ([esbuild#516](https://github.com/evanw/esbuild/issues/516)).

0 commit comments

Comments
 (0)