From 54966f0ff16883ec00abe107922bfb79db8a5d27 Mon Sep 17 00:00:00 2001 From: iczc Date: Fri, 2 Aug 2019 10:27:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BC=96=E8=BE=91=E5=99=A8?= =?UTF-8?q?=E4=B8=BA=E7=BC=96=E8=AF=91=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ch01-02-hello-world.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch01-02-hello-world.md b/src/ch01-02-hello-world.md index 482afe3..f7aebf8 100644 --- a/src/ch01-02-hello-world.md +++ b/src/ch01-02-hello-world.md @@ -111,7 +111,7 @@ fn main() { 你刚刚运行了一个新创建的程序,那么让我们检查此过程中的每一个步骤。 -在运行 Rust 程序之前,必须先使用 Rust 编辑器编译它,即输入 `rustc` 命令并传入源文件名称,如下: +在运行 Rust 程序之前,必须先使用 Rust 编译器编译它,即输入 `rustc` 命令并传入源文件名称,如下: ```text $ rustc main.rs