Skip to content

Commit 122a407

Browse files
committed
Auto merge of #7661 - cavokz:master, r=steveklabnik
Fix typo in section 'Caching the Cargo home in CI'
2 parents 6132112 + 9cf7c3c commit 122a407

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/src/guide/cargo-home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To be able to make these binaries accessible, add the path of the directory to y
5656
To avoid redownloading all crate dependencies during continuous integration, you can cache the `$CARGO_HOME` directory.
5757
However, caching the entire directory is often inefficient as it will contain downloaded sources twice.
5858
If we depend on a crate such as `serde 1.0.92` and cache the entire `$CARGO_HOME` we would actually cache the sources twice, the `serde-1.0.92.crate` inside `registry/cache` and the extracted `.rs` files of serde inside `registry/src`.
59-
The can unnecessarily slow down the build as downloading, extracting, recompressing and reuploading the cache to the CI servers can take some time.
59+
That can unnecessarily slow down the build as downloading, extracting, recompressing and reuploading the cache to the CI servers can take some time.
6060

6161
It should be sufficient to only cache the following directories across builds:
6262

0 commit comments

Comments
 (0)