File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ comparisons to other languages in the C family. The tutorial covers
11
11
the whole language, though not with the depth and precision of the
12
12
[ language reference] ( rust.html ) .
13
13
14
- ## Language Overview
14
+ ## Language overview
15
15
16
16
Rust is a systems programming language with a focus on type safety,
17
17
memory safety, concurrency and performance. It is intended for writing
@@ -38,7 +38,7 @@ high-level features include:
38
38
* Generics - Functions and types can be parameterized over generic
39
39
types with optional type constraints
40
40
41
- ## First Impressions
41
+ ## First impressions
42
42
43
43
As a curly-brace language in the tradition of C, C++, and JavaScript,
44
44
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,
1557
1557
and won't be able to access it afterwards. The receiving task will
1558
1558
become the sole owner of the box.
1559
1559
1560
- ### Borrowed Pointers
1560
+ ### Borrowed pointers
1561
1561
1562
1562
Rust borrowed pointers are a general purpose reference/pointer type,
1563
1563
similar to the C++ reference type, but guaranteed to point to valid
You can’t perform that action at this time.
0 commit comments