diff --git a/book/contents/basic/compound-type/struct.md b/book/contents/basic/compound-type/struct.md index 56d770de..d55d76b9 100644 --- a/book/contents/basic/compound-type/struct.md +++ b/book/contents/basic/compound-type/struct.md @@ -127,7 +127,7 @@ fn build_user(email: String, username: String) -> User { println!("{}", user1.active); // 下面这行会报错 - //println!("{}", user1); + //println!("{}", user1.username); ``` ## 结构体的内存排列 @@ -246,4 +246,4 @@ help: consider introducing a named lifetime parameter ``` -未来在[生命周期](../../advance/lifetime/basic.md)中会讲到如何修复这个问题以便在结构体中存储引用,不过在那之前,我们会避免在结构体中使用引用类型。 \ No newline at end of file +未来在[生命周期](../../advance/lifetime/basic.md)中会讲到如何修复这个问题以便在结构体中存储引用,不过在那之前,我们会避免在结构体中使用引用类型。