Skip to content

Commit

Permalink
Fix markdown linting error
Browse files Browse the repository at this point in the history
Annoyingly it removes a piece of the page that should stay.
  • Loading branch information
TrialDragon committed Jan 18, 2024
1 parent 5dd16da commit 474a5cf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion content/learn/quick-start/getting-started/apps/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ cargo run

in your project folder. You will notice that ... nothing happens. This is because we haven't told our app to do anything yet! Apps are just empty shells capable of running our application logic. Let's add some logic to our App using Bevy ECS.

[`App`]: https://docs.rs/bevy/latest/bevy/app/struct.App.html
2 changes: 0 additions & 2 deletions content/news/2020-08-10-introducing-bevy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ fn main() {

[`AddDefaultPlugins::add_default_plugins`] adds all of the features you probably expect from a game engine: a 2D / 3D renderer, asset loading, a UI system, windows, input, etc


You can also register the default [`Plugins`] manually like this:

```rs
Expand Down Expand Up @@ -887,7 +886,6 @@ fn read_texture_system(textures: Res<Assets<Texture>>, texture_handle: &Handle<T

### Asset Events


The `Assets<T>` collection is basically just a map from `Handle<T>` to `T` that records created, modified, and removed [`Events`]. These events can also be consumed as a system resource, just like any other [`Events`]:

```rs
Expand Down

0 comments on commit 474a5cf

Please sign in to comment.