From 48a08372338385b98faabb95c43692997ad85635 Mon Sep 17 00:00:00 2001 From: adispring Date: Mon, 29 Jul 2019 10:17:08 +0800 Subject: [PATCH] [fix] typo in part12.rs --- src/part12.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/part12.rs b/src/part12.rs index e7ccf99..276ccaf 100644 --- a/src/part12.rs +++ b/src/part12.rs @@ -12,7 +12,7 @@ use std::cell::{Cell, RefCell}; //@ ## `Rc` //@ The solution is to find some way of cloning `Callbacks` without cloning the environments. This -//@ can be achieved with `Rc`, a *reference-counted* pointer. This is is another example of a +//@ can be achieved with `Rc`, a *reference-counted* pointer. This is another example of a //@ smart pointer. You can `clone` an `Rc` as often as you want, that doesn't affect the data it //@ contains. It only creates more references to the same data. Once all the references are gone, //@ the data is deleted. -- 2.30.2