diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-03-08 20:09:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-08 20:09:00 +0100 |
| commit | 09b17a1c2dfc3853931e223bf1871655af7800f1 (patch) | |
| tree | 1effc90736c8aad7af3a83aabd33319ad4e002d6 | |
| parent | 5ff52cbdb772e3d4c33428b2b893b8ef015b81ae (diff) | |
| parent | 2a57a5dcc4b398b5158295fc710fba429d241d36 (diff) | |
| download | rust-09b17a1c2dfc3853931e223bf1871655af7800f1.tar.gz rust-09b17a1c2dfc3853931e223bf1871655af7800f1.zip | |
Rollup merge of #82810 - amaurremi:source-based-coverage-typo, r=ehuss
Typo fix in Unstable book: `cargo cov` -> `cargo profdata`
| -rw-r--r-- | src/doc/unstable-book/src/compiler-flags/source-based-code-coverage.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/unstable-book/src/compiler-flags/source-based-code-coverage.md b/src/doc/unstable-book/src/compiler-flags/source-based-code-coverage.md index 8aca0052147..0d05b80e211 100644 --- a/src/doc/unstable-book/src/compiler-flags/source-based-code-coverage.md +++ b/src/doc/unstable-book/src/compiler-flags/source-based-code-coverage.md @@ -128,7 +128,7 @@ $ cargo profdata -- --help # note the additional "--" preceding the tool-specif ## Creating coverage reports -Raw profiles have to be indexed before they can be used to generate coverage reports. This is done using [`llvm-profdata merge`] (or `cargo cov -- merge`), which can combine multiple raw profiles and index them at the same time: +Raw profiles have to be indexed before they can be used to generate coverage reports. This is done using [`llvm-profdata merge`] (or `cargo profdata -- merge`), which can combine multiple raw profiles and index them at the same time: ```shell $ llvm-profdata merge -sparse formatjson5.profraw -o formatjson5.profdata |
