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.
This commit is contained in:
Alice Cecile 2025-03-20 22:15:37 -04:00 committed by François Mockers
parent 1db1119819
commit 4b000080ea
2 changed files with 3 additions and 3 deletions

View File

@ -2217,8 +2217,8 @@ doc-scrape-examples = true
required-features = ["bevy_mesh_picking_backend", "configurable_error_handler"] required-features = ["bevy_mesh_picking_backend", "configurable_error_handler"]
[package.metadata.example.error_handling] [package.metadata.example.error_handling]
name = "Fallible Systems" name = "Error handling"
description = "Systems that return results to handle errors" description = "How to return and handle errors across the ECS"
category = "ECS (Entity Component System)" category = "ECS (Entity Component System)"
wasm = false wasm = false

View File

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