Skip to content

Commit 4c76da9

Browse files
Merge #301
301: 2.1(QEMU): update app name for git project init r=eldruin a=rwaskiewicz **What this PR seeks to solve:** this isn't a huge problem, but only the "Using `git`" section of the book uses the application name 'awesome-app', which doesn't align with the other startup sections/commands that follow this section. the workaround is to use 'awesome-app' in lieu of 'app' in commands like `cargo size`. **Changes:** update application name in the `Using git` section from `awesome-app` to `app` to follow along with the rest of the initialization instructions/subsequent sections of the book. this change is meant to make it easier to follow instructions that follow this section in the book that use the name of the application Co-authored-by: Ryan Waskiewicz <ryanwaskiewicz@gmail.com>
2 parents c3a51e2 + 950aab0 commit 4c76da9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/start/qemu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ And then fill in the placeholders in the `Cargo.toml` file
5858
[package]
5959
authors = ["{{authors}}"] # "{{authors}}" -> "John Smith"
6060
edition = "2018"
61-
name = "{{project-name}}" # "{{project-name}}" -> "awesome-app"
61+
name = "{{project-name}}" # "{{project-name}}" -> "app"
6262
version = "0.1.0"
6363

6464
# ..
6565

6666
[[bin]]
67-
name = "{{project-name}}" # "{{project-name}}" -> "awesome-app"
67+
name = "{{project-name}}" # "{{project-name}}" -> "app"
6868
test = false
6969
bench = false
7070
```

0 commit comments

Comments
 (0)