Skip to content

Commit

Permalink
Fix markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Jul 14, 2024
1 parent 3392db6 commit b61dc16
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions add_player.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ one puts in:

- components: things to work on, typically structures
- systems: things that work on the components, typically functions
- plugins: a set of components and systems with a shared purpose.
- plugins: a set of components and systems with a shared purpose.
More on these later

Our `create_app` functions adds a system, called `add_player`,
Expand All @@ -173,7 +173,6 @@ then returns our `App`.

Here is the `add_player` function:


```rust
fn add_player(mut commands: Commands) {
commands.spawn(Player);
Expand Down

0 comments on commit b61dc16

Please sign in to comment.