about summary refs log tree commit diff
path: root/src/doc/intro.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/intro.md')
-rw-r--r--src/doc/intro.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/intro.md b/src/doc/intro.md
index 10e52a159df..1dc9f09c220 100644
--- a/src/doc/intro.md
+++ b/src/doc/intro.md
@@ -23,7 +23,7 @@ and safety.
 # Tools
 
 Getting started on a new Rust project is incredibly easy, thanks to Rust's
-package manager, [Cargo](http://crates.io).
+package manager, [Cargo](https://crates.io/).
 
 To start a new project with Cargo, use `cargo new`:
 
@@ -149,8 +149,8 @@ Enough about tools, let's talk code!
 Rust's defining feature is "memory safety without garbage collection". Let's
 take a moment to talk about what that means. *Memory safety* means that the
 programming language eliminates certain kinds of bugs, such as [buffer
-overflows](http://en.wikipedia.org/wiki/Buffer_overflow) and [dangling
-pointers](http://en.wikipedia.org/wiki/Dangling_pointer). These problems occur
+overflows](https://en.wikipedia.org/wiki/Buffer_overflow) and [dangling
+pointers](https://en.wikipedia.org/wiki/Dangling_pointer). These problems occur
 when you have unrestricted access to memory. As an example, here's some Ruby
 code: