mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-10-02 20:06:44 +02:00
fix: correct typo in Rust ownership rules title and filename
* Rename ownsership-rules--memory-safety@2UQ3AuGkDbT0-54l0rOGM.md to ownership-rules--memory-safety@2UQ3AuGkDbT0-54l0rOGM.md The filename was also affected with the typo. * Fixed Typo 'Ownsership' to Ownership Fixed typo !?
This commit is contained in:
@@ -679,7 +679,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"2UQ3AuGkDbT0-54l0rOGM": {
|
"2UQ3AuGkDbT0-54l0rOGM": {
|
||||||
"title": "Ownsership Rules & Memory Safety",
|
"title": "Ownership Rules & Memory Safety",
|
||||||
"description": "Rust's ownership has three key rules: each value has exactly one owner, only one owner exists at a time, and values are dropped when owners go out of scope. This prevents data races, ensures memory safety without garbage collection, and eliminates common bugs like use-after-free and memory leaks.\n\nVisit the following resources to learn more:",
|
"description": "Rust's ownership has three key rules: each value has exactly one owner, only one owner exists at a time, and values are dropped when owners go out of scope. This prevents data races, ensures memory safety without garbage collection, and eliminates common bugs like use-after-free and memory leaks.\n\nVisit the following resources to learn more:",
|
||||||
"links": [
|
"links": [
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user