From 7f553df4618b73d15831571eb80393b622382e27 Mon Sep 17 00:00:00 2001 From: Allan Downey Date: Sat, 26 Mar 2022 21:12:24 +0800 Subject: [PATCH] fix(struct): typo --- src/basic/compound-type/struct.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/basic/compound-type/struct.md b/src/basic/compound-type/struct.md index 6ba1fcb5..76271cce 100644 --- a/src/basic/compound-type/struct.md +++ b/src/basic/compound-type/struct.md @@ -278,7 +278,7 @@ help: consider introducing a named lifetime parameter ## 使用 `#[derive(Debug)]` 来打印结构体的信息 -在前面的代码中我们使用 `#[derive(Debug)]` 对结构体进行了标记,这样才能使用 `println("{:?}", s)` 的方式对其进行打印输出,如果不加,看看会发生什么: +在前面的代码中我们使用 `#[derive(Debug)]` 对结构体进行了标记,这样才能使用 `println!("{:?}", s);` 的方式对其进行打印输出,如果不加,看看会发生什么: ```rust struct Rectangle { @@ -424,8 +424,7 @@ $ cargo run 可以看到,我们想要的 debug 信息几乎都有了:代码所在的文件名、行号、表达式以及表达式的值,简直完美! - - ## 课后练习 -> [Rust By Practice](https://zh.practice.rs/compound-types/struct.html),支持代码在线编辑和运行,并提供详细的[习题解答](https://github.com/sunface/rust-by-practice)。 \ No newline at end of file +> [Rust By Practice](https://zh.practice.rs/compound-types/struct.html),支持代码在线编辑和运行,并提供详细的[习题解答](https://github.com/sunface/rust-by-practice)。 +