From 24e52d0bdff939deb51f5a247fce641239e69fdb Mon Sep 17 00:00:00 2001 From: EchoAI Date: Sat, 9 Apr 2022 14:00:29 +0800 Subject: [PATCH] =?UTF-8?q?RUST=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/reference/environment-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/environment-variables.md b/src/reference/environment-variables.md index ae663b4..2e1b6e9 100644 --- a/src/reference/environment-variables.md +++ b/src/reference/environment-variables.md @@ -28,7 +28,7 @@ Cargo 会读取的环境变量 Cargo 为 crates 设置的环境变量 -Cargo 在编译时,会将这些环境变量暴露在箱子中。请注意,这也适用于测试二进制文件。要在 RIST 程序中获得这些变量中的任何一个变量的值,请执行以下操作: +Cargo 在编译时,会将这些环境变量暴露在箱子中。请注意,这也适用于测试二进制文件。要在 RUST 程序中获得这些变量中的任何一个变量的值,请执行以下操作: ```rust let version = env!("CARGO_PKG_VERSION");