From 976f7fb438dae334550a949ba1dc826e8e1e0a1d Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Thu, 15 Mar 2018 12:03:56 -0700 Subject: [PATCH] Grammar: Add a missing space --- 01. why_rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01. why_rust.md b/01. why_rust.md index 7472a13..b7454a4 100644 --- a/01. why_rust.md +++ b/01. why_rust.md @@ -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).