Skip to content

Commit a8680de

Browse files
committed
README: improve description of Rust
1 parent 9cc0b22 commit a8680de

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# The Rust Programming Language
22

3-
Rust is a systems programming language that is fast, memory safe and
4-
multithreaded, but does not employ a garbage collector or otherwise
5-
impose significant runtime overhead.
3+
Rust is a fast systems programming language that guarantees
4+
memory safety and offers painless concurrency ([no data races]).
5+
It does not employ a garbage collector and has minimal runtime overhead.
66

77
This repo contains the code for `rustc`, the Rust compiler, as well
88
as standard libraries, tools and documentation for Rust.
99

10+
[no data races]: http://blog.rust-lang.org/2015/04/10/Fearless-Concurrency.html
11+
1012
## Quick Start
1113

1214
Read ["Installing Rust"] from [The Book].

0 commit comments

Comments
 (0)