From 8b873a850d9c2b41d89f930a16220475ec66130a Mon Sep 17 00:00:00 2001 From: Vito King Date: Mon, 14 Aug 2023 14:14:05 +0800 Subject: [PATCH] Fixed Cell link (#1076) --- src/std/cell.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/std/cell.md b/src/std/cell.md index 0b2f4a4c..39bb3a47 100644 --- a/src/std/cell.md +++ b/src/std/cell.md @@ -1,6 +1,6 @@ # `Cell` and `RefCell` -[`Cell`][https://doc.rust-lang.org/std/cell/struct.Cell.html] and +[`Cell`](https://doc.rust-lang.org/std/cell/struct.Cell.html) and [`RefCell`](https://doc.rust-lang.org/std/cell/struct.RefCell.html) implement what Rust calls *interior mutability:* mutation of values in an immutable context.