File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ and safety.
2323# Tools
2424
2525Getting 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/ ) .
2727
2828To start a new project with Cargo, use ` cargo new ` :
2929
@@ -149,8 +149,8 @@ Enough about tools, let's talk code!
149149Rust's defining feature is "memory safety without garbage collection". Let's
150150take a moment to talk about what that means. * Memory safety* means that the
151151programming 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
154154when you have unrestricted access to memory. As an example, here's some Ruby
155155code:
156156
You can’t perform that action at this time.
0 commit comments