1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-15 18:44:18 +02:00

Fixed Cell link (#1076)

This commit is contained in:
Vito King
2023-08-14 14:14:05 +08:00
committed by GitHub
parent a166ccfdb1
commit 8b873a850d

View File

@ -1,6 +1,6 @@
# `Cell` and `RefCell` # `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 [`RefCell`](https://doc.rust-lang.org/std/cell/struct.RefCell.html) implement
what Rust calls *interior mutability:* mutation of values in an immutable what Rust calls *interior mutability:* mutation of values in an immutable
context. context.