From 9a0f91a35df22f7d04992766c739c10f0889afde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=B7=E6=9C=88=E8=BD=A9?= Date: Fri, 28 Apr 2017 23:45:02 +0800 Subject: [PATCH] fixed typo at CH15-00 L15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 只能 -> 智能 --- src/ch15-00-smart-pointers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch15-00-smart-pointers.md b/src/ch15-00-smart-pointers.md index c55e9b5..bc336a4 100644 --- a/src/ch15-00-smart-pointers.md +++ b/src/ch15-00-smart-pointers.md @@ -12,11 +12,11 @@ * `Box`,用于在堆上分配值 * `Rc`,一个引用计数类型,其数据可以有多个所有者 -* `RefCell`,其本身并不是只能指针,不过它管理智能指针`Ref`和`RefMut`的访问,在运行时而不是在编译时执行借用规则。 +* `RefCell`,其本身并不是智能指针,不过它管理智能指针`Ref`和`RefMut`的访问,在运行时而不是在编译时执行借用规则。 同时我们还将涉及: * **内部可变性**(*interior mutability*)模式,当一个不可变类型暴露出改变其内部值的 API,这时借用规则适用于运行时而不是编译时。 * 引用循环,它如何会泄露内存,以及如何避免他们 -让我们开始吧! \ No newline at end of file +让我们开始吧!