diff options
| author | Xue Fuqiao <xfq.free@gmail.com> | 2015-04-07 13:35:26 +0800 |
|---|---|---|
| committer | Xue Fuqiao <xfq.free@gmail.com> | 2015-04-07 13:35:26 +0800 |
| commit | 600101bdfd79de03568ad9fc5986773bea9364cc (patch) | |
| tree | 90c66c77744d79e25f6ce29df5e2715d1d162242 /src | |
| parent | b2e65ee6e4e1523b1d4c56ea0ec430e28946f2f4 (diff) | |
| download | rust-600101bdfd79de03568ad9fc5986773bea9364cc.tar.gz rust-600101bdfd79de03568ad9fc5986773bea9364cc.zip | |
Update intro.md
Use HTTPS where possible to avoid plaintext HTTP connections.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/intro.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/intro.md b/src/doc/intro.md index b711085ddbd..32727ee29a0 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: |
