Skip to content

Commit 6caafaa

Browse files
committed
tutorial: Use bold bullet items instead of bold italic
1 parent 655f7f8 commit 6caafaa

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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)