tutorial: Use consistent casing in headers

This commit is contained in:
Brian Anderson 2012-07-06 18:27:42 -07:00
parent 28fec95c59
commit b5f5676a2f
1 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ comparisons to other languages in the C family. The tutorial covers
the whole language, though not with the depth and precision of the
[language reference](rust.html).
## Language Overview
## Language overview
Rust is a systems programming language with a focus on type safety,
memory safety, concurrency and performance. It is intended for writing
@ -38,7 +38,7 @@ high-level features include:
* Generics - Functions and types can be parameterized over generic
types with optional type constraints
## First Impressions
## First impressions
As a curly-brace language in the tradition of C, C++, and JavaScript,
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,
and won't be able to access it afterwards. The receiving task will
become the sole owner of the box.
### Borrowed Pointers
### Borrowed pointers
Rust borrowed pointers are a general purpose reference/pointer type,
similar to the C++ reference type, but guaranteed to point to valid