File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ and safety.
23
23
# Tools
24
24
25
25
Getting started on a new Rust project is incredibly easy, thanks to Rust's
26
- package manager, [ Cargo] ( http ://crates.io) .
26
+ package manager, [ Cargo] ( https ://crates.io/ ) .
27
27
28
28
To start a new project with Cargo, use ` cargo new ` :
29
29
@@ -149,8 +149,8 @@ Enough about tools, let's talk code!
149
149
Rust's defining feature is "memory safety without garbage collection". Let's
150
150
take a moment to talk about what that means. * Memory safety* means that the
151
151
programming language eliminates certain kinds of bugs, such as [ buffer
152
- overflows] ( http ://en.wikipedia.org/wiki/Buffer_overflow) and [ dangling
153
- pointers] ( http ://en.wikipedia.org/wiki/Dangling_pointer) . These problems occur
152
+ overflows] ( https ://en.wikipedia.org/wiki/Buffer_overflow) and [ dangling
153
+ pointers] ( https ://en.wikipedia.org/wiki/Dangling_pointer) . These problems occur
154
154
when you have unrestricted access to memory. As an example, here's some Ruby
155
155
code:
156
156
You can’t perform that action at this time.
0 commit comments