Skip to content

Commit b5f5676

Browse files
committed
tutorial: Use consistent casing in headers
1 parent 28fec95 commit b5f5676

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ comparisons to other languages in the C family. The tutorial covers
1111
the whole language, though not with the depth and precision of the
1212
[language reference](rust.html).
1313

14-
## Language Overview
14+
## Language overview
1515

1616
Rust is a systems programming language with a focus on type safety,
1717
memory safety, concurrency and performance. It is intended for writing
@@ -38,7 +38,7 @@ high-level features include:
3838
* Generics - Functions and types can be parameterized over generic
3939
types with optional type constraints
4040

41-
## First Impressions
41+
## First impressions
4242

4343
As a curly-brace language in the tradition of C, C++, and JavaScript,
4444
Rust looks a lot like other languages you may be familiar with.
@@ -1557,7 +1557,7 @@ to other tasks. The sending task will give up ownership of the box,
15571557
and won't be able to access it afterwards. The receiving task will
15581558
become the sole owner of the box.
15591559
1560-
### Borrowed Pointers
1560+
### Borrowed pointers
15611561
15621562
Rust borrowed pointers are a general purpose reference/pointer type,
15631563
similar to the C++ reference type, but guaranteed to point to valid

0 commit comments

Comments
 (0)