Skip to content

Commit 7224097

Browse files
committed
---
yaml --- r: 24094 b: refs/heads/master c: 6caafaa h: refs/heads/master v: v3
1 parent 0d1d583 commit 7224097

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 655f7f844c64b29c35263bb48b5bedb3ed4b7b44
2+
refs/heads/master: 6caafaa9ea44d404733af6f9a907b6295dccc966
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/doc/tutorial.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ As a multi-paradigm language, Rust supports writing code in
2626
procedural, functional and object-oriented styles. Some of its nice
2727
high-level features include:
2828

29-
* ***Pattern matching and algebraic data types (enums).*** Common in
29+
* **Pattern matching and algebraic data types (enums).** Common in
3030
functional languages, pattern matching on ADTs provides a compact
3131
and expressive way to encode program logic.
32-
* ***Task-based concurrency.*** Rust uses lightweight tasks that do
32+
* **Task-based concurrency.** Rust uses lightweight tasks that do
3333
not share memory.
34-
* ***Higher-order functions.*** Rust functions may take closures as
34+
* **Higher-order functions.** Rust functions may take closures as
3535
arguments or return closures as return values. Closures in Rust are
3636
very powerful and used pervasively.
37-
* ***Trait polymorphism.*** Rust's type system features a unique
37+
* **Trait polymorphism.** Rust's type system features a unique
3838
combination of Java-style interfaces and Haskell-style typeclasses
3939
called _traits_.
40-
* ***Parametric polymorphism (generics).*** Functions and types can be
40+
* **Parametric polymorphism (generics).** Functions and types can be
4141
parameterized over type variables with optional type constraints.
42-
* ***Type inference.*** Type annotations on local variable
42+
* **Type inference.** Type annotations on local variable
4343
declarations can be omitted.
4444

4545
## First impressions

0 commit comments

Comments
 (0)