From 8ce0076b771d17db79bb1c80aa96a5c10f6530e3 Mon Sep 17 00:00:00 2001 From: lijinpeng Date: Sun, 20 Feb 2022 12:58:36 +0800 Subject: [PATCH] Fix typo in cargo-cache.md --- contents/cargo/guide/cargo-cache.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contents/cargo/guide/cargo-cache.md b/contents/cargo/guide/cargo-cache.md index bdce65e0..ab71422f 100644 --- a/contents/cargo/guide/cargo-cache.md +++ b/contents/cargo/guide/cargo-cache.md @@ -42,11 +42,11 @@ $ echo $HOME/.cargo/ - `registry/cache/` - `git/db/` -## 清楚缓存 +## 清除缓存 理论上,我们可以手动移除缓存中的任何一部分,当后续有包需要时 `Cargo` 会尽可能去恢复这些资源: -- 解压缩 `registry/src` 下的 `.crate` 档案 +- 解压缩到 `registry/src` 的 `.crate` 档案 - 从 `.git` 中 `checkout` 缓存的仓库 - 如果以上都没了,会从网络上重新下载 -你也可以使用 [cargo-cache] 包来选择性的清除 `cache` 中指定的部分,当然,它还可以用来查看缓存中的组件大小。 +你也可以使用 [cargo-cache](https://crates.io/crates/cargo-cache) 包来选择性的清除 `cache` 中指定的部分,当然,它还可以用来查看缓存中的组件大小。