1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-18 05:37:52 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.