Skip to content

Commit 3fac7b2

Browse files
committed
[src/doc/book] Fix header casings
1 parent 01aa9e3 commit 3fac7b2

7 files changed

+12
-12
lines changed

src/doc/book/src/01-02-first-steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## First steps with Cargo
1+
## First Steps with Cargo
22

33
To start a new project with Cargo, use `cargo new`:
44

src/doc/book/src/02-01-why-cargo-exists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Why Cargo exists
1+
## Why Cargo Exists
22

33
Cargo is a tool that allows Rust projects to declare their various
44
dependencies and ensure that you’ll always get a repeatable build.

src/doc/book/src/02-02-creating-a-new-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Creating a new project
1+
## Creating a New Project
22

33
To start a new project with Cargo, use `cargo new`:
44

src/doc/book/src/02-03-working-on-an-existing-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Working on an existing Cargo project
1+
## Working on an Existing Cargo Project
22

33
If you download an existing project that uses Cargo, it’s really easy
44
to get going.

src/doc/book/src/02-05-project-layout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Project layout
1+
## Project Layout
22

33
Cargo uses conventions for file placement to make it easy to dive into a new
44
Cargo project:

src/doc/book/src/02-08-continuous-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Continuous integration
1+
## Continuous Integration
22

33
### Travis CI
44

src/doc/book/src/SUMMARY.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
* [Getting Started](getting-started.md)
44
* [Installation](01-01-installation.md)
5-
* [First steps with Cargo](01-02-first-steps.md)
5+
* [First Steps with Cargo](01-02-first-steps.md)
66

7-
* [Guide](guide.md)
8-
* [Why Cargo exists](02-01-why-cargo-exists.md)
9-
* [Creating a new project](02-02-creating-a-new-project.md)
10-
* [Working on an existing Cargo project](02-03-working-on-an-existing-project.md)
7+
* [Cargo Guide](guide.md)
8+
* [Why Cargo Exists](02-01-why-cargo-exists.md)
9+
* [Creating a New Project](02-02-creating-a-new-project.md)
10+
* [Working on an Existing Project](02-03-working-on-an-existing-project.md)
1111
* [Dependencies](02-04-dependencies.md)
12-
* [Project layout](02-05-project-layout.md)
12+
* [Project Layout](02-05-project-layout.md)
1313
* [Cargo.toml vs Cargo.lock](02-06-cargo-toml-vs-cargo-lock.md)
1414
* [Tests](02-07-tests.md)
1515
* [Continuous Integration](02-08-continuous-integration.md)

0 commit comments

Comments
 (0)