From 6d4849235bf91e6fa6e8eba05f3828e1ba93eb9f Mon Sep 17 00:00:00 2001 From: Vanilla Date: Fri, 24 Dec 2021 16:40:05 +0800 Subject: [PATCH] =?UTF-8?q?[F]=20ch05-03-method-syntax.md:=20Typo=20"?= =?UTF-8?q?=E4=BB=96"=20->=20"=E5=AE=83".?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ch05-03-method-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch05-03-method-syntax.md b/src/ch05-03-method-syntax.md index 72d8001..efb2c6e 100644 --- a/src/ch05-03-method-syntax.md +++ b/src/ch05-03-method-syntax.md @@ -78,7 +78,7 @@ fn main() { > > Rust 并没有一个与 `->` 等效的运算符;相反,Rust 有一个叫 **自动引用和解引用**(*automatic referencing and dereferencing*)的功能。方法调用是 Rust 中少数几个拥有这种行为的地方。 > -> 他是这样工作的:当使用 `object.something()` 调用方法时,Rust 会自动为 `object` 添加 `&`、`&mut` 或 `*` 以便使 `object` 与方法签名匹配。也就是说,这些代码是等价的: +> 它是这样工作的:当使用 `object.something()` 调用方法时,Rust 会自动为 `object` 添加 `&`、`&mut` 或 `*` 以便使 `object` 与方法签名匹配。也就是说,这些代码是等价的: > > > ```rust