Skip to content

Commit 116484b

Browse files
Fix missed error_handling example rename and update description (#18455)
# Objective I didn't rename the example properly in the meta data, and the description is unclear and limited. ## Solution Fix both of those.
1 parent a033f1b commit 116484b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2228,8 +2228,8 @@ doc-scrape-examples = true
22282228
required-features = ["bevy_mesh_picking_backend", "configurable_error_handler"]
22292229

22302230
[package.metadata.example.error_handling]
2231-
name = "Fallible Systems"
2232-
description = "Systems that return results to handle errors"
2231+
name = "Error handling"
2232+
description = "How to return and handle errors across the ECS"
22332233
category = "ECS (Entity Component System)"
22342234
wasm = false
22352235

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,9 +311,9 @@ Example | Description
311311
[Dynamic ECS](../examples/ecs/dynamic.rs) | Dynamically create components, spawn entities with those components and query those components
312312
[ECS Guide](../examples/ecs/ecs_guide.rs) | Full guide to Bevy's ECS
313313
[Entity disabling](../examples/ecs/entity_disabling.rs) | Demonstrates how to hide entities from the ECS without deleting them
314+
[Error handling](../examples/ecs/error_handling.rs) | How to return and handle errors across the ECS
314315
[Event](../examples/ecs/event.rs) | Illustrates event creation, activation, and reception
315316
[Fallible System Parameters](../examples/ecs/fallible_params.rs) | Systems are skipped if their parameters cannot be acquired
316-
[Fallible Systems](../examples/ecs/error_handling.rs) | Systems that return results to handle errors
317317
[Fixed Timestep](../examples/ecs/fixed_timestep.rs) | Shows how to create systems that run every fixed timestep, rather than every tick
318318
[Generic System](../examples/ecs/generic_system.rs) | Shows how to create systems that can be reused with different types
319319
[Hierarchy](../examples/ecs/hierarchy.rs) | Creates a hierarchy of parents and children entities

0 commit comments

Comments
 (0)