You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-06-16 22:27:34 +02:00
Fix typo in rust.md
This commit is contained in:
committed by
Fabian Bornhofen
parent
71c68a6996
commit
4c8d85dc88
@ -3,7 +3,7 @@
|
||||
Memory management in Rust is a mix:
|
||||
|
||||
* Safe and correct like Java, but without a garbage collector.
|
||||
* Depending on which abstraction (or combonation of abstractions) you choose, can be a single unique pointer, reference counted, or atomically reference counted.
|
||||
* Depending on which abstraction (or combination of abstractions) you choose, can be a single unique pointer, reference counted, or atomically reference counted.
|
||||
* Scope-based like C++, but the compiler enforces full adherence.
|
||||
* A Rust user can choose the right abstraction for the situation, some even have no cost at runtime like C.
|
||||
|
||||
|
Reference in New Issue
Block a user