Skip to content

Commit

Permalink
Fix spelling, fix markdown style
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Jun 29, 2024
1 parent 226d446 commit a4ad6bf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,19 @@ sexualized
socio
subgoals
tdd
config
faq
github
html
https
json
jsonc
linter
markdownlint
markdownlintignore
md
mlc
txt
wordlist
www
yml
6 changes: 3 additions & 3 deletions hello_world.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This chapter is a minimal Bevy program.

The minimal program will create a Bevy `App`
and then run it ([main.rs](https://github.com/richelbilderbeek/bevy_tdd_book_hello_world/blob/master/src/main.rs)):
and then run it ([main.rs](https://github.com/richelbilderbeek/bevy_tdd_book_hello_world/blob/master/src/main.rs)):

```rust
use crate::app::create_app;
Expand All @@ -16,7 +16,7 @@ fn main() {
```

The `main` function will not be used in automated testing,
as it starts our game: starting the game
as it starts our game: starting the game
will require that a user needs to do something to close it.
Hence, the `main` function 'just' runs the `App`.

Expand All @@ -27,7 +27,7 @@ function in the file [app.rs](https://github.com/richelbilderbeek/bevy_tdd_book_
Our first trivial test will be if `create_app` does something,
i.e. it does not crash:

```
```rust
#[cfg(test)]
mod tests {
use super::*;
Expand Down

0 comments on commit a4ad6bf

Please sign in to comment.