diff --git a/README.md b/README.md index 1a5e7c3..fe2cb7a 100644 --- a/README.md +++ b/README.md @@ -19,17 +19,17 @@ Consider reading the [User Guide](https://ten3roberts.github.io/flax/guide) ## Features - [Declarative component macro](https://docs.rs/flax/latest/flax/macro.component.html) -- [Expressive query system](https://docs.rs/flax/latest/flax/struct.Query.html) -- [Change detection](https://docs.rs/flax/latest/flax/struct.Component.html#method.modified) +- [Expressive query system](https://docs.rs/flax/latest/flax/query/struct.Query.html) +- [Change detection](https://docs.rs/flax/latest/flax/component/struct.Component.html#method.modified) - [Query filtering](https://docs.rs/flax/latest/flax/filter/index.html) - [System execution](https://docs.rs/flax/latest/flax/system/struct.System.html) - [Multithreaded system execution](https://docs.rs/flax/latest/flax/schedule/struct.Schedule.html) - [Many to many entity relation and graphs](https://docs.rs/flax/latest/flax/macro.component.html#relations) - [Reflection through component metadata](https://docs.rs/flax/latest/flax/macro.component.html) -- [Ergonomic entity builder](https://docs.rs/flax/latest/flax/struct.EntityBuilder.html) +- [Ergonomic entity builder](https://docs.rs/flax/latest/flax/entity/struct.EntityBuilder.html) - [Serialization and deserialization](https://docs.rs/flax/latest/flax/serialize/) -- [(async) event subscription](https://docs.rs/flax/latest/flax/struct.World.html#method.subscribe) -- [Runtime components](https://docs.rs/flax/latest/flax/struct.World.html#method.spawn_component) +- [(async) event subscription](https://docs.rs/flax/latest/flax/world/struct.World.html#method.subscribe) +- [Runtime components](https://docs.rs/flax/latest/flax/world/struct.World.html#method.spawn_component) - ...and more ## [Live Demo](https://ten3roberts.github.io/flax/asteroids) diff --git a/src/lib.rs b/src/lib.rs index 4c260bc..7e7b83f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,17 +9,17 @@ //! ## Features //! //! - [Declarative component macro](https://docs.rs/flax/latest/flax/macro.component.html) -//! - [Queries](https://docs.rs/flax/latest/flax/struct.Query.html) -//! - [Change detection](https://docs.rs/flax/latest/flax/struct.Component.html#method.modified) +//! - [Expressive query system](https://docs.rs/flax/latest/flax/query/struct.Query.html) +//! - [Change detection](https://docs.rs/flax/latest/flax/component/struct.Component.html#method.modified) //! - [Query filtering](https://docs.rs/flax/latest/flax/filter/index.html) //! - [System execution](https://docs.rs/flax/latest/flax/system/struct.System.html) //! - [Multithreaded system execution](https://docs.rs/flax/latest/flax/schedule/struct.Schedule.html) //! - [Many to many entity relation and graphs](https://docs.rs/flax/latest/flax/macro.component.html#relations) //! - [Reflection through component metadata](https://docs.rs/flax/latest/flax/macro.component.html) -//! - [Ergonomic entity builder](https://docs.rs/flax/latest/flax/struct.EntityBuilder.html) +//! - [Ergonomic entity builder](https://docs.rs/flax/latest/flax/entity/struct.EntityBuilder.html) //! - [Serialization and deserialization](https://docs.rs/flax/latest/flax/serialize/) -//! - [(async) event subscription](https://docs.rs/flax/latest/flax/struct.World.html#method.subscribe) -//! - [Runtime components](https://docs.rs/flax/latest/flax/struct.World.html#method.spawn_component) +//! - [(async) event subscription](https://docs.rs/flax/latest/flax/world/struct.World.html#method.subscribe) +//! - [Runtime components](https://docs.rs/flax/latest/flax/world/struct.World.html#method.spawn_component) //! - ...and more //! //! ## [Live Demo](https://ten3roberts.github.io/flax/asteroids)