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