From 164149c269604ecd22ed9c42db5d68c487619bb9 Mon Sep 17 00:00:00 2001 From: rhgb Date: Thu, 22 Feb 2018 13:38:33 +0800 Subject: [PATCH] typo --- src/ch15-02-deref.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch15-02-deref.md b/src/ch15-02-deref.md index 56a27d4..a6d2025 100644 --- a/src/ch15-02-deref.md +++ b/src/ch15-02-deref.md @@ -17,7 +17,7 @@ different way in the below paragraph /Carol --> 让我们首先看看 `*` 如何处理引用,接着尝试定义我们自己的类 `Box` 类型并看看为何 `*` 不能像引用一样工作。我们会探索如何实现 `Deref` trait 使得智能指针以类似引用的方式工作变为可能。最后,我们会讨论 Rust 的 **解引用强制多态**(*deref coercions*)功能和它是如何一同处理引用或智能指针的。 -### 通过 `*` 追钟指针的值 +### 通过 `*` 追踪指针的值