From 877871a66fd45fb1fda23c6f3055cba3373add9f Mon Sep 17 00:00:00 2001 From: Sunface Date: Mon, 17 Jul 2023 22:10:52 +0800 Subject: [PATCH] Update src/appendix/rust-versions/1.59.md --- src/appendix/rust-versions/1.59.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/appendix/rust-versions/1.59.md b/src/appendix/rust-versions/1.59.md index ea47d374..ccfd61cd 100644 --- a/src/appendix/rust-versions/1.59.md +++ b/src/appendix/rust-versions/1.59.md @@ -94,7 +94,7 @@ where 对于受限的环境来说,缩小编译出的二进制文件体积是非常重要的。 -以往我们可以在二进制文件创建后,手动的来完成。现在 cargo 和 rustc 支持在链接( linked )后就删除 debug 信息,在 `Cargo.toml` 中新增以下配置: +以往我们可以在二进制文件被创建后,手动的来完成。现在 cargo 和 rustc 支持在链接( linked )后就删除 debug 信息,在 `Cargo.toml` 中新增以下配置: ```toml [profile.release]