From eb82716d3c26e750a6900e4605b09acd628e15bd Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Thu, 28 Jul 2016 15:55:38 -0400 Subject: [PATCH] Remove some more "in Rust" from titles --- src/ch04-03-data-types.md | 2 +- src/ch04-04-how-functions-work.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch04-03-data-types.md b/src/ch04-03-data-types.md index 185101a..5f4ee1d 100644 --- a/src/ch04-03-data-types.md +++ b/src/ch04-03-data-types.md @@ -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 diff --git a/src/ch04-04-how-functions-work.md b/src/ch04-04-how-functions-work.md index aa1af3b..413455b 100644 --- a/src/ch04-04-how-functions-work.md +++ b/src/ch04-04-how-functions-work.md @@ -1,4 +1,4 @@ -## How Functions Work in Rust +## How Functions Work Functions are pervasive in Rust code. We’ve already seen one of the most important functions in the language: the `main()` function that’s the entry