From 620da64df24e0683c4f100ace5734511a98a86c1 Mon Sep 17 00:00:00 2001 From: PengJunhuan Date: Wed, 9 Feb 2022 23:55:12 +0800 Subject: [PATCH] Update method.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改错误拼写 --- book/contents/basic/method.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/contents/basic/method.md b/book/contents/basic/method.md index 8f89d1fd..df385cdc 100644 --- a/book/contents/basic/method.md +++ b/book/contents/basic/method.md @@ -104,7 +104,7 @@ fn main() { } ``` -当我们使用 `rect1.width()` 时, Rust 知道我们调用的是它的方法,如果使用 `rect1.witdh`,则是访问它的字段。 +当我们使用 `rect1.width()` 时, Rust 知道我们调用的是它的方法,如果使用 `rect1.width`,则是访问它的字段。 一般来说,方法跟字段同名,往往适用于实现 `getter` 访问器,例如: ```rust