]> git.proxmox.com Git - cargo.git/commitdiff
[src/doc/book] Fix header casings
authorBehnam Esfahbod <behnam@zwnj.org>
Thu, 31 Aug 2017 08:30:58 +0000 (01:30 -0700)
committerBehnam Esfahbod <behnam@zwnj.org>
Thu, 31 Aug 2017 08:35:47 +0000 (01:35 -0700)
src/doc/book/src/01-02-first-steps.md
src/doc/book/src/02-01-why-cargo-exists.md
src/doc/book/src/02-02-creating-a-new-project.md
src/doc/book/src/02-03-working-on-an-existing-project.md
src/doc/book/src/02-05-project-layout.md
src/doc/book/src/02-08-continuous-integration.md
src/doc/book/src/SUMMARY.md

index 974adecc5a4e984a67897c84b34fc2169c9d6605..25d36f96b93953fc17d14b8428bf881c428713d4 100644 (file)
@@ -1,4 +1,4 @@
-## First steps with Cargo
+## First Steps with Cargo
 
 To start a new project with Cargo, use `cargo new`:
 
index bdbfa9cec056bdcbdbcdaef341ee6013b264718a..9c5d0d2dd6ad1db3e70e49d845bf1388c8df0826 100644 (file)
@@ -1,4 +1,4 @@
-## Why Cargo exists
+## Why Cargo Exists
 
 Cargo is a tool that allows Rust projects to declare their various
 dependencies and ensure that you’ll always get a repeatable build.
index 678820f9e45cb661a4f20c0f49354f30568cfcdc..541fec7f6b4e4666e6c05570894bcda31c9e609d 100644 (file)
@@ -1,4 +1,4 @@
-## Creating a new project
+## Creating a New Project
 
 To start a new project with Cargo, use `cargo new`:
 
index 25203988eb49864c072cb8eeefb2e5fafae3640c..97c032005a360c155d6a8407c02b584f4ba36b8a 100644 (file)
@@ -1,4 +1,4 @@
-## Working on an existing Cargo project
+## Working on an Existing Cargo Project
 
 If you download an existing project that uses Cargo, it’s really easy
 to get going.
index d66aa7eb1e5603e1f32dfdf2456e827794d531a2..9b2df404f1b7c883e4ab9b191998cd5dec5fa06d 100644 (file)
@@ -1,4 +1,4 @@
-## Project layout
+## Project Layout
 
 Cargo uses conventions for file placement to make it easy to dive into a new
 Cargo project:
index f4a4348bbf4635c807071c2787373e4b22d10132..6e5efe72c89585abd6ea98539cdb616335ebdc58 100644 (file)
@@ -1,4 +1,4 @@
-## Continuous integration
+## Continuous Integration
 
 ### Travis CI
 
index 27aa1d1beaf7d8e14a3cc9cdc9b5e7a4de210217..21e8c151c138af1c9a8abaf4bbd2c9cf41a444e4 100644 (file)
@@ -2,14 +2,14 @@
 
 * [Getting Started](getting-started.md)
     * [Installation](01-01-installation.md)
-    * [First steps with Cargo](01-02-first-steps.md)
+    * [First Steps with Cargo](01-02-first-steps.md)
 
-* [Guide](guide.md)
-    * [Why Cargo exists](02-01-why-cargo-exists.md)
-    * [Creating a new project](02-02-creating-a-new-project.md)
-    * [Working on an existing Cargo project](02-03-working-on-an-existing-project.md)
+* [Cargo Guide](guide.md)
+    * [Why Cargo Exists](02-01-why-cargo-exists.md)
+    * [Creating a New Project](02-02-creating-a-new-project.md)
+    * [Working on an Existing Project](02-03-working-on-an-existing-project.md)
     * [Dependencies](02-04-dependencies.md)
-    * [Project layout](02-05-project-layout.md)
+    * [Project Layout](02-05-project-layout.md)
     * [Cargo.toml vs Cargo.lock](02-06-cargo-toml-vs-cargo-lock.md)
     * [Tests](02-07-tests.md)
     * [Continuous Integration](02-08-continuous-integration.md)