diff --git a/documentation/docs/configuration.md b/documentation/docs/configuration.md index 6681c0e5..092dccc4 100644 --- a/documentation/docs/configuration.md +++ b/documentation/docs/configuration.md @@ -29,4 +29,4 @@ rinf = { version = "0.0.0", features = ["feature-name"] } - `rt-multi-thread`: Starts a worker thread for each CPU core available on the system within the `tokio` runtime by enabling its `rt-multi-thread` feature. By default, the `tokio` runtime uses only one thread. Enabling this feature allows the `tokio` runtime to utilize all the cores on your computer. This feature does not affect applications on the web platform. - `show-backtrace`: Prints the full backtrace in the CLI when a panic occurs in debug mode. In general, backtrace is not very helpful when debugging async apps, so consider using [`tracing`](https://crates.io/crates/tracing) for logging purposes. Note that this feature does not affect debugging on the web platform. -- `bevy`: Adds the trait `Event` of `bevy_ecs` through a derive macro for DartSignal. This allows bevy's Entity Component System to be used to listen for events from `Dart`. +- `bevy`: Implements the `Event` trait from `bevy_ecs` for `DartSignal`, allowing Bevy's entity component system to listen for events from Dart.