Remove some more "in Rust" from titles

This commit is contained in:
Carol (Nichols || Goulding) 2016-07-28 15:55:38 -04:00
parent bd6539e2b2
commit eb82716d3c
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
## Data Types in Rust
## Data Types
Every value in Rust is of a certain *type*, which tells Rust what kind of data
is being given so it knows how to work with that data. You can usually rely on

View File

@ -1,4 +1,4 @@
## How Functions Work in Rust
## How Functions Work
Functions are pervasive in Rust code. Weve already seen one of the most
important functions in the language: the `main()` function thats the entry