about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-04-08 01:19:37 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-04-08 01:19:37 +0530
commit6295406d9f97372b087cf4c8d3ad1b18c32257f9 (patch)
treec06ddb35c4c4e43a58a77f596083c1c3f099dd1e
parent7b2e11844a8ff607923a8fa20e84eae3155f38fe (diff)
parent600101bdfd79de03568ad9fc5986773bea9364cc (diff)
downloadrust-6295406d9f97372b087cf4c8d3ad1b18c32257f9.tar.gz
rust-6295406d9f97372b087cf4c8d3ad1b18c32257f9.zip
Rollup merge of #24139 - xfq:patch-1, r=steveklabnik
Use HTTPS where possible to avoid plaintext HTTP connections.
-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: