1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-02-06 02:53:28 +02:00
Fix typo
This commit is contained in:
Yerkebulan Tulibergenov 2024-10-08 20:25:54 -07:00 committed by GitHub
parent 7a25c4ad84
commit 252bb62521
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,7 @@ In the above example, try the following:
# More to Explore
- Shared references are `Copy`/`Clone`, mutable references are not. This is
because rust requires that mutable references be exclusive, so while it's
because Rust requires that mutable references be exclusive, so while it's
valid to make a copy of a shared reference, creating a copy of a mutable
reference would violate Rust's borrowing rules.