Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Sep 2, 2021
1 parent 6aaf696 commit 6db6aa0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
5 changes: 3 additions & 2 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
- [⚙️ Reliable](./how_rust_feels/reliable.md)
- [🐎 Performant](./how_rust_feels/performant.md)
- [💪🏽 Empowering](./how_rust_feels/empowering.md)
- [🔧 Transparent and tunable](./how_rust_feels/transparent.md)
- [💎 Polished](./how_rust_feels/polished.md)
- [🧩 Productive](./how_rust_feels/productive.md)
- [🔧 Transparent](./how_rust_feels/transparent.md)
- [🥰 Supportive](./how_rust_feels/supportive.md)
- [🤸 Versatile](./how_rust_feels/versatile.md)
- [How to Rustacean](./how_to_rustacean.md)
- [💖 Be kind and considerate](./how_to_rustacean/be_kind.md)
Expand Down
10 changes: 5 additions & 5 deletions src/how_rust_feels.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ This section identifies the way that Rust ought to feel, when everything is goin

> In Rust, the fastest code is often the most high-level: convenient features like closures, iterators, or async-await map down to code that is at once efficient and which uses minimal memory.
## [💪🏽 Empowering](./how_rust_feels/empowering.md): "just a few lines of code can do a lot of work"
## [🧩 Productive](./how_rust_feels/productive.md): "just a few lines of code can do a lot of work"

> Rust offers a wide selection of libraries and abstractions that can be quickly combined to create complex applications.
> Rust and its ecosystem offer a wide array of powerful building blocks that can be combined and recombined. The result is that standing up quality code can be done in record time.
## [🔧 Transparent and tunable](./how_rust_feels/transparent.md): "able to predict low-level details and control them"
## [🔧 Transparent](./how_rust_feels/transparent.md): "able to predict low-level details and control them"

> The translation from Rust to underlying machine code is predictable. If needed, you have options to control the low-level details of how your application works.
## [💎 Polished](./how_rust_feels/polished.md): "Rust gets the big *and* the small things right"
## [🥰 Accessible](./how_rust_feels/accessible.md): "build the system you want to build, whoever you are"

> Rust is built with an attention to detail. Whether it's the error messages, the tooling, or the details of the type system or APIs, we try to anticipate and meet our users' needs, along with things they didn't know they wanted.
> Rust is meant to be used in practice. We pay a lot of attention to the details of things like error messages and our tooling workflows. Because being accessible ultimately requires more than technology, we work hard to have a community that is welcome and supportive to everyone -- not just people who already know what they are doing.
## [🤸 Versatile](./how_rust_feels/versatile.md): "whatever it is I want to do, I can use Rust to do it"

Expand Down
1 change: 1 addition & 0 deletions src/how_rust_feels/productive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 🧩 Productive
1 change: 1 addition & 0 deletions src/how_rust_feels/supported.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 🥰 Supported
1 change: 1 addition & 0 deletions src/how_rust_feels/supportive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# 🥰 Supportive
2 changes: 1 addition & 1 deletion src/how_rust_feels/transparent.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 🔧 Transparent and tunable
# 🔧 Transparent

> The translation from Rust to underlying machine code is predictable. If needed, you have options to control the low-level details of how your application works.

0 comments on commit 6db6aa0

Please sign in to comment.