File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 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
1111the whole language, though not with the depth and precision of the
1212[ language reference] ( rust.html ) .
1313
14- ## Language Overview
14+ ## Language overview
1515
1616Rust is a systems programming language with a focus on type safety,
1717memory 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
4343As a curly-brace language in the tradition of C, C++, and JavaScript,
4444Rust 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,
15571557and won't be able to access it afterwards. The receiving task will
15581558become the sole owner of the box.
15591559
1560- ### Borrowed Pointers
1560+ ### Borrowed pointers
15611561
15621562Rust borrowed pointers are a general purpose reference/pointer type,
15631563similar to the C++ reference type, but guaranteed to point to valid
You can’t perform that action at this time.
0 commit comments