Skip to content

Commit

Permalink
fix external links
Browse files Browse the repository at this point in the history
  • Loading branch information
RobWalt committed Nov 1, 2024
1 parent 6f555b9 commit 7fd1f6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bevy-trait-query/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@
//! Trait queries support basic change detection filtration.
//!
//! - queries requesting shared access yield [`crate::all::ReadTraits`] which is similar to
//! [`Ref`](bevy_ecs::change_detection::Ref)
//! [`Ref`](https://docs.rs/bevy/latest/bevy/ecs/change_detection/struct.Ref.html)
//! - queries requesting exclusive access yield [`crate::all::WriteTraits`] which is similar to
//! [`Mut`](bevy_ecs::change_detection::Mut)
//! [`Mut`](https://docs.rs/bevy/latest/bevy/ecs/change_detection/struct.Mut.html)
//!
//! To get all the components that implement the target trait, and have also changed in some way
//! since the last tick, you can:
Expand Down Expand Up @@ -224,7 +224,7 @@
//!
//! If you know you have only one component that implements the target trait,
//! you can use [`OneAdded`](crate::one::OneAdded) or [`OneChanged`](crate::one::OneChanged) which behave more like the typical
//! `bevy` [`Added`](bevy::prelude::Added)/[`Changed`](bevy::prelude::Changed) filters:
//! `bevy` [`Added`](https://docs.rs/bevy/latest/bevy/ecs/query/struct.Added.html)/[`Changed`](https://docs.rs/bevy/latest/bevy/ecs/query/struct.Changed.html) filters:
//! ```no_run
//! # use bevy::prelude::*;
//! # use bevy_trait_query::*;
Expand Down

0 comments on commit 7fd1f6d

Please sign in to comment.