Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grammar: Add a missing space #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 01. why_rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Its design elements came from a wide range of sources.
and etc.


Rust **doesn't use an automated garbage collection** system\(GC\) by default.
Rust **doesn't use an automated garbage collection** system \(GC\) by default.

> 🔎 One of Rust’s most unique and compelling features is [ownership](https://doc.rust-lang.org/stable/book/ownership.html), which uses to achieves memory safety. Rust creates memory pointers optimistically, checks memory pointers’ limited accesses at the compiler time with the usage of [References and Borrowing](https://doc.rust-lang.org/stable/book/references-and-borrowing.html). And it does automatic compile time memory management by checking the [Lifetimes](https://doc.rust-lang.org/stable/book/lifetimes.html).

Expand Down