Skip to content

Commit 600101b

Browse files
committed
Update intro.md
Use HTTPS where possible to avoid plaintext HTTP connections.
1 parent b2e65ee commit 600101b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/doc/intro.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ and safety.
2323
# Tools
2424

2525
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/).
2727

2828
To start a new project with Cargo, use `cargo new`:
2929

@@ -149,8 +149,8 @@ Enough about tools, let's talk code!
149149
Rust's defining feature is "memory safety without garbage collection". Let's
150150
take a moment to talk about what that means. *Memory safety* means that the
151151
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
154154
when you have unrestricted access to memory. As an example, here's some Ruby
155155
code:
156156

0 commit comments

Comments
 (0)